mirror of
https://github.com/jarun/nnn.git
synced 2024-11-24 20:01:27 +00:00
Merge pull request #14 from szlin/master
Add definition of PATH_MAX on GNU/Hurd
This commit is contained in:
commit
aab4991dda
3
nnn.c
3
nnn.c
|
@ -13,6 +13,9 @@
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
#include <grp.h>
|
#include <grp.h>
|
||||||
#include <limits.h>
|
#include <limits.h>
|
||||||
|
#ifdef __gnu_hurd__
|
||||||
|
#define PATH_MAX 4096
|
||||||
|
#endif
|
||||||
#include <locale.h>
|
#include <locale.h>
|
||||||
#include <pwd.h>
|
#include <pwd.h>
|
||||||
#include <regex.h>
|
#include <regex.h>
|
||||||
|
|
Loading…
Reference in a new issue