master xplshn/aruu / shared / libutil / agetcwd.c
 1/* See LICENSE file for copyright and license details. */
 2#include <unistd.h>
 3
 4#include "../util.h"
 5
 6char *
 7agetcwd(void)
 8{
 9	char *buf;
10	long size;
11
12	apathmax(&buf, &size);
13	if (!getcwd(buf, size))
14		eprintf("getcwd:");
15
16	return buf;
17}
18