windows-nt/Source/XPSP1/NT/base/subsys/posix/programs/bsdlib/getwd.c
2020-09-26 16:20:57 +08:00

27 lines
309 B
C

/*
* Getwd: Not Posix. Written in terms of Posix call, getcwd. AOJ
*/
#include <unistd.h>
char *getwd (buf)
register char
*buf;
{
return getcwd (buf, 80);
}
/*
main (argc, argv)
char **argv;
{
char
*c,
buf [64];
c = getwd (buf);
if (!c)
puts ("failed");
printf ("getwd %s\n", buf);
}
*/