diff options
author | hexcoder- <heiko@hexco.de> | 2020-04-17 13:22:39 +0200 |
---|---|---|
committer | hexcoder- <heiko@hexco.de> | 2020-04-17 13:22:39 +0200 |
commit | f22d8120ef6814c9af3b7a0c291c1494137fc53c (patch) | |
tree | 5114d452786efb8512bb2d800a781b2a9f89ebdc | |
parent | 8ecfbcdf3457ca4337dc6a0f45def33582f51a7f (diff) | |
download | afl++-f22d8120ef6814c9af3b7a0c291c1494137fc53c.tar.gz |
fix afl-showmap for PATH_MAX on *BSD
-rw-r--r-- | src/afl-showmap.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/afl-showmap.c b/src/afl-showmap.c index a6adb695..59b4963d 100644 --- a/src/afl-showmap.c +++ b/src/afl-showmap.c @@ -52,6 +52,7 @@ #include <signal.h> #include <dirent.h> #include <fcntl.h> +#include <limits.h> #include <sys/wait.h> #include <sys/time.h> |