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 | |
parent | e6daeef55c5e0a88a1a55fa7d033e51a019f5919 (diff) | |
download | afl++-7a6b66e684b7d202e0aeccf831b2018989871ae8.tar.gz |
fix limits.h include
-rw-r--r-- | src/afl-fuzz-bitmap.c | 2 | ||||
-rw-r--r-- | src/afl-fuzz-init.c | 2 | ||||
-rw-r--r-- | src/afl-fuzz-queue.c | 2 |
3 files changed, 3 insertions, 3 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 diff --git a/src/afl-fuzz-init.c b/src/afl-fuzz-init.c index b81ec1c8..efdde463 100644 --- a/src/afl-fuzz-init.c +++ b/src/afl-fuzz-init.c @@ -23,8 +23,8 @@ */ -#include <limits.h> #include "afl-fuzz.h" +#include <limits.h> #ifdef HAVE_AFFINITY diff --git a/src/afl-fuzz-queue.c b/src/afl-fuzz-queue.c index aad4f3c0..174d7d92 100644 --- a/src/afl-fuzz-queue.c +++ b/src/afl-fuzz-queue.c @@ -22,8 +22,8 @@ */ -#include <limits.h> #include "afl-fuzz.h" +#include <limits.h> /* Mark deterministic checks as done for a particular queue entry. We use the .state file to avoid repeating deterministic fuzzing when resuming aborted |