summaryrefslogtreecommitdiffstats
path: root/private/posix/programs/bsdlib/getwd.c
blob: 56cb9ebcf34d8b952d77022be67ed3278f238a74 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/*
 * 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);
}
*/