diff options
author | van Hauser <vh@thc.org> | 2020-04-08 15:49:34 +0200 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-04-09 10:23:37 +0200 |
commit | 7a6b66e684b7d202e0aeccf831b2018989871ae8 (patch) | |
tree | 464b34ed0ed7d1f258fca178e0166b188c0ea2cb /src/afl-fuzz-bitmap.c | |
parent | e6daeef55c5e0a88a1a55fa7d033e51a019f5919 (diff) | |
download | afl++-7a6b66e684b7d202e0aeccf831b2018989871ae8.tar.gz |
fix limits.h include
Diffstat (limited to 'src/afl-fuzz-bitmap.c')
-rw-r--r-- | src/afl-fuzz-bitmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/afl-fuzz-bitmap.c b/src/afl-fuzz-bitmap.c index 6b6a07e2..c5347dcb 100644 --- a/src/afl-fuzz-bitmap.c +++ b/src/afl-fuzz-bitmap.c @@ -23,8 +23,8 @@ */ -#include <limits.h> #include "afl-fuzz.h" +#include <limits.h> /* Write bitmap to file. The bitmap is useful mostly for the secret -B option, to focus a separate fuzzing session on a particular |