diff options
author | van Hauser <vh@thc.org> | 2020-04-08 15:49:34 +0200 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-04-08 15:49:34 +0200 |
commit | 1b5b54fe94afa3d34f9ce165e38f45fe47e6a821 (patch) | |
tree | 464b34ed0ed7d1f258fca178e0166b188c0ea2cb /src/afl-fuzz-queue.c | |
parent | 9b3e6112ff821be5a0e0ff475f39227f94c31aae (diff) | |
download | afl++-1b5b54fe94afa3d34f9ce165e38f45fe47e6a821.tar.gz |
fix limits.h include
Diffstat (limited to 'src/afl-fuzz-queue.c')
-rw-r--r-- | src/afl-fuzz-queue.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 |