diff options
author | van Hauser <vh@thc.org> | 2019-10-04 10:33:28 +0200 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2019-10-04 10:33:28 +0200 |
commit | 9c105098ddbb5f65a24063f08ed34d09aec36b04 (patch) | |
tree | e7c1e0d6db0c04ea41719c979dc13829e1adeeaa /include | |
parent | 9af6395e92a0f5aafcbd5e58b12a162fa7fe5d8c (diff) | |
download | afl++-9c105098ddbb5f65a24063f08ed34d09aec36b04.tar.gz |
general maintance
Diffstat (limited to 'include')
-rw-r--r-- | include/afl-fuzz.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/afl-fuzz.h b/include/afl-fuzz.h index ff26c894..e45a9d84 100644 --- a/include/afl-fuzz.h +++ b/include/afl-fuzz.h @@ -78,7 +78,7 @@ /* For systems that have sched_setaffinity; right now just Linux, but one can hope... */ -#if defined (__linux__) || defined(__FreeBSD__) +#if defined(__linux__) || defined(__FreeBSD__) #define HAVE_AFFINITY 1 #if defined(__FreeBSD__) #include <sys/cpuset.h> @@ -690,8 +690,8 @@ static u64 get_cur_time_us(void) { } #ifdef _AFL_DOCUMENT_MUTATIONS - extern u8 do_document; - extern u32 document_counter; +extern u8 do_document; +extern u32 document_counter; #endif #endif |