diff options
author | van Hauser <vh@thc.org> | 2021-01-19 10:16:12 +0100 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2021-01-19 10:16:12 +0100 |
commit | ca1eb32552636240acbb85f0b52668e23e4429e4 (patch) | |
tree | 6f68a737ec6efa3b8bace803609903c68f487459 | |
parent | a9ebf72a8408f993e6279ba853c49e31310cf73f (diff) | |
download | afl++-ca1eb32552636240acbb85f0b52668e23e4429e4.tar.gz |
fix compiles
-rw-r--r-- | utils/aflpp_driver/aflpp_driver.c | 1 | ||||
-rw-r--r-- | utils/defork/defork.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/utils/aflpp_driver/aflpp_driver.c b/utils/aflpp_driver/aflpp_driver.c index 30e6ebb9..7bb929b2 100644 --- a/utils/aflpp_driver/aflpp_driver.c +++ b/utils/aflpp_driver/aflpp_driver.c @@ -47,6 +47,7 @@ $AFL_HOME/afl-fuzz -i IN -o OUT ./a.out #include <sys/mman.h> #include "config.h" +#include "types.h" #include "cmplog.h" #ifdef _DEBUG diff --git a/utils/defork/defork.c b/utils/defork/defork.c index f50b9a4b..c9be3283 100644 --- a/utils/defork/defork.c +++ b/utils/defork/defork.c @@ -5,6 +5,7 @@ #include <stdbool.h> #include "../../include/config.h" +#include "../../include/types.h" /* we want to fork once (for the afl++ forkserver), then immediately return as child on subsequent forks. */ |