2011-05-25 23:01:20 -04:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
|
|
|
#include <unistd.h>
|
2013-03-05 15:46:48 -05:00
|
|
|
|
2011-05-25 23:01:20 -04:00
|
|
|
#include "../util.h"
|
|
|
|
|
|
|
|
char *
|
|
|
|
agetcwd(void)
|
|
|
|
{
|
|
|
|
char *buf;
|
2011-06-21 00:05:37 -04:00
|
|
|
long size;
|
2011-05-25 23:01:20 -04:00
|
|
|
|
2011-06-25 12:26:44 -04:00
|
|
|
apathmax(&buf, &size);
|
2011-05-25 23:01:20 -04:00
|
|
|
if(!getcwd(buf, size))
|
|
|
|
eprintf("getcwd:");
|
2013-03-05 15:46:48 -05:00
|
|
|
|
2011-05-25 23:01:20 -04:00
|
|
|
return buf;
|
|
|
|
}
|
2013-03-05 15:46:48 -05:00
|
|
|
|