diff options
author | hexcoder- <heiko@hexco.de> | 2020-04-17 13:45:22 +0200 |
---|---|---|
committer | hexcoder- <heiko@hexco.de> | 2020-04-17 13:45:22 +0200 |
commit | ef1d384184d2b67afb02836eb48233cce6dc4a89 (patch) | |
tree | cd6460f59d36e9798fed9e935760adb5aab2e2de /src | |
parent | a6d4f04019db512a5f3be0735cf1eede14ac4375 (diff) | |
download | afl++-ef1d384184d2b67afb02836eb48233cce6dc4a89.tar.gz |
add missing limits.h include for PATH_MAX (OpenBSD)
Diffstat (limited to 'src')
-rw-r--r-- | src/afl-fuzz.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/afl-fuzz.c b/src/afl-fuzz.c index 83e25994..efb65ba6 100644 --- a/src/afl-fuzz.c +++ b/src/afl-fuzz.c @@ -25,6 +25,7 @@ #include "afl-fuzz.h" #include "cmplog.h" +#include <limits.h> static u8 *get_libradamsa_path(u8 *own_loc) { |