diff options
author | hexcoder- <heiko@hexco.de> | 2020-06-03 17:43:33 +0200 |
---|---|---|
committer | hexcoder- <heiko@hexco.de> | 2020-06-03 17:43:33 +0200 |
commit | 686d8823eb8eab3a7cb87f4affec56e0d6e402d1 (patch) | |
tree | 5503502436d82864ff2564fe022737dafcd14eb7 | |
parent | a5d554c3ef250f5ef84f9c66fb24c262332701d1 (diff) | |
download | afl++-686d8823eb8eab3a7cb87f4affec56e0d6e402d1.tar.gz |
OpenBSD: add missing limits.h header for PATH_MAX
-rw-r--r-- | src/afl-fuzz-run.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/afl-fuzz-run.c b/src/afl-fuzz-run.c index 5934690f..bf5defa5 100644 --- a/src/afl-fuzz-run.c +++ b/src/afl-fuzz-run.c @@ -27,6 +27,7 @@ #include "afl-fuzz.h" #include <sys/time.h> #include <signal.h> +#include <limits.h> #include "cmplog.h" |