MAX_PATH is not defined in some platforms, most notably GNU/Hurd. Therefore, I define it here to 4096 which is the same value in limits.h.

This commit is contained in:
SZ Lin (林上智) 2017-04-24 16:03:33 +08:00
parent 012662ab89
commit 1ec5eb1231
1 changed files with 3 additions and 0 deletions

3
nnn.c
View File

@ -13,6 +13,9 @@
#include <fcntl.h>
#include <grp.h>
#include <limits.h>
#ifdef __gnu_hurd__
#define PATH_MAX 4096
#endif
#include <locale.h>
#include <pwd.h>
#include <regex.h>