diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2014-08-05 16:00:37 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2014-08-05 16:00:37 +0000 |
commit | e04ac9ea436206ec75a6e5b35b3e6ae11d294cae (patch) | |
tree | 966e966e795df159af827dcf6936810f063d78e5 | |
parent | fa2d2baa68d82f5967d881b896ad4de515c2a3bf (diff) | |
download | mandoc-e04ac9ea436206ec75a6e5b35b3e6ae11d294cae.tar.gz |
NULL is in <stddef.h>; found on Linux
-rw-r--r-- | test-mmap.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test-mmap.c b/test-mmap.c index 7fb2f973..c322a34d 100644 --- a/test-mmap.c +++ b/test-mmap.c @@ -1,5 +1,6 @@ #include <sys/types.h> #include <sys/mman.h> +#include <stddef.h> int main(void) |