use 0 instead of NULL for null pointer constants
[musl] / src / misc / get_current_dir_name.c
1 #define _GNU_SOURCE
2 #include <stdlib.h>
3 #include <string.h>
4 #include <limits.h>
5 #include <unistd.h>
6 #include <sys/stat.h>
7
8 char *get_current_dir_name(void) {
9         struct stat a, b;
10         char buf[PATH_MAX];
11         char *res = getenv("PWD");
12         if (res && *res && !stat(res, &a) && !stat(".", &b)
13             && (a.st_dev == b.st_dev) && (a.st_ino == b.st_ino))
14                 return strdup(res);
15         if(!getcwd(buf, sizeof(buf))) return NULL;
16         return strdup(buf);
17 }