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