windows-nt/Source/XPSP1/NT/base/subsys/posix/programs/bsdlib/getwd.c

27 lines
309 B
C
Raw Normal View History

2020-09-26 03:20:57 -05:00
/*
* 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);
}
*/