7d36a35649
1) Use size_t * instead of long * 2) Fallback to PATH_MAX instead of BUFSIZ 3) Header cleanup
19 lines
239 B
C
19 lines
239 B
C
/* See LICENSE file for copyright and license details. */
|
|
#include <unistd.h>
|
|
|
|
#include "../util.h"
|
|
|
|
char *
|
|
agetcwd(void)
|
|
{
|
|
char *buf;
|
|
size_t size;
|
|
|
|
apathmax(&buf, &size);
|
|
if (!getcwd(buf, size))
|
|
eprintf("getcwd:");
|
|
|
|
return buf;
|
|
}
|
|
|