From 935fca41f1e0e7fcbcf023f0520b7768e4ad206d Mon Sep 17 00:00:00 2001 From: maxice8 <30738253+maxice8@users.noreply.github.com> Date: Thu, 5 Oct 2017 04:34:18 -0300 Subject: [PATCH] include sys/types.h for non-glibc linux builds (#46) --- nnn.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nnn.c b/nnn.c index e630ebab..65c8ff3f 100644 --- a/nnn.c +++ b/nnn.c @@ -23,6 +23,9 @@ #endif #include #define LINUX_INOTIFY +#if !defined(__GLIBC__) +#include +#endif #endif #include #include