mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
309 B
26 lines
309 B
/*
|
|
* 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);
|
|
}
|
|
*/
|