aboutsummaryrefslogtreecommitdiff
path: root/include/afl-fuzz.h
diff options
context:
space:
mode:
authorAndrea Fioraldi <andreafioraldi@gmail.com>2019-09-03 20:43:11 +0200
committerAndrea Fioraldi <andreafioraldi@gmail.com>2019-09-03 20:43:11 +0200
commit7151651ea9a87f394cf7f44fcba56cd0d2b7eefa (patch)
tree18f302c2d67c07deacc5680d8920b7d5e221a8da /include/afl-fuzz.h
parent0d7ecd4327aa4c67a0ddf1807847f9106db07be1 (diff)
downloadafl++-7151651ea9a87f394cf7f44fcba56cd0d2b7eefa.tar.gz
remove macro indentation from code-format
Diffstat (limited to 'include/afl-fuzz.h')
-rw-r--r--include/afl-fuzz.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/include/afl-fuzz.h b/include/afl-fuzz.h
index b5c5afaf..3206ee72 100644
--- a/include/afl-fuzz.h
+++ b/include/afl-fuzz.h
@@ -27,12 +27,12 @@
#define MESSAGES_TO_STDOUT
#ifndef _GNU_SOURCE
-# define _GNU_SOURCE
+#define _GNU_SOURCE
#endif
#define _FILE_OFFSET_BITS 64
#ifdef __ANDROID__
-# include "android-ashmem.h"
+#include "android-ashmem.h"
#endif
#include "config.h"
@@ -69,21 +69,21 @@
#include <sys/file.h>
#if defined(__APPLE__) || defined(__FreeBSD__) || defined(__OpenBSD__)
-# include <sys/sysctl.h>
-# define HAVE_ARC4RANDOM 1
+#include <sys/sysctl.h>
+#define HAVE_ARC4RANDOM 1
#endif /* __APPLE__ || __FreeBSD__ || __OpenBSD__ */
/* For systems that have sched_setaffinity; right now just Linux, but one
can hope... */
#ifdef __linux__
-# define HAVE_AFFINITY 1
+#define HAVE_AFFINITY 1
#endif /* __linux__ */
#ifndef SIMPLE_FILES
-# define CASE_PREFIX "id:"
+#define CASE_PREFIX "id:"
#else
-# define CASE_PREFIX "id_"
+#define CASE_PREFIX "id_"
#endif /* ^!SIMPLE_FILES */
struct queue_entry {
@@ -432,7 +432,7 @@ extern s32
/* Python stuff */
#ifdef USE_PYTHON
-# include <Python.h>
+#include <Python.h>
extern PyObject* py_module;