mirror of
https://github.com/jarun/nnn.git
synced 2024-11-24 20:01:27 +00:00
include sys/types.h for non-glibc linux builds (#46)
This commit is contained in:
parent
211329f5df
commit
935fca41f1
3
nnn.c
3
nnn.c
|
@ -23,6 +23,9 @@
|
||||||
#endif
|
#endif
|
||||||
#include <sys/inotify.h>
|
#include <sys/inotify.h>
|
||||||
#define LINUX_INOTIFY
|
#define LINUX_INOTIFY
|
||||||
|
#if !defined(__GLIBC__)
|
||||||
|
#include <sys/types.h>
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
#include <sys/resource.h>
|
#include <sys/resource.h>
|
||||||
#include <sys/stat.h>
|
#include <sys/stat.h>
|
||||||
|
|
Loading…
Reference in a new issue