ubase/libutil/agetcwd.c

19 lines
237 B
C
Raw Permalink Normal View History

2013-08-14 14:38:43 +00:00
/* See LICENSE file for copyright and license details. */
#include <unistd.h>
#include "../util.h"
char *
agetcwd(void)
{
char *buf;
long size;
apathmax(&buf, &size);
2014-07-09 15:39:32 +00:00
if (!getcwd(buf, size))
2013-08-14 14:38:43 +00:00
eprintf("getcwd:");
return buf;
}