agetcwd.c - ubase - suckless linux base utils
HTML git clone git://git.suckless.org/ubase
DIR Log
DIR Files
DIR Refs
DIR README
DIR LICENSE
---
agetcwd.c (237B)
---
1 /* See LICENSE file for copyright and license details. */
2 #include <unistd.h>
3
4 #include "../util.h"
5
6 char *
7 agetcwd(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