about summary refs log tree commit diff
path: root/include
diff options
context:
space:
mode:
authorAndrea Fioraldi <andreafioraldi@gmail.com>2020-09-08 11:19:17 +0200
committerAndrea Fioraldi <andreafioraldi@gmail.com>2020-09-08 11:19:17 +0200
commit10f775be076a158753a8e55caaffaba3d8eadb44 (patch)
treef12ac5a903ae634ca2175d7d884ae8bea1abd76e /include
parent6404abd7d609350ffd6c6f221cbf56e60b2ef030 (diff)
parent3565641c41ed13dc49d9a13e4538a981d021f77d (diff)
downloadafl++-10f775be076a158753a8e55caaffaba3d8eadb44.tar.gz
conflicts
Diffstat (limited to 'include')
-rw-r--r--include/cmplog.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/cmplog.h b/include/cmplog.h
index 74e6a3bb..bf557785 100644
--- a/include/cmplog.h
+++ b/include/cmplog.h
@@ -29,7 +29,6 @@
 #define _AFL_CMPLOG_H
 
 #include "config.h"
-#include "forkserver.h"
 
 #define CMP_MAP_W 65536
 #define CMP_MAP_H 256
@@ -77,7 +76,8 @@ struct cmp_map {
 
 /* Execs the child */
 
-void cmplog_exec_child(afl_forkserver_t *fsrv, char **argv);
+struct afl_forkserver;
+void cmplog_exec_child(struct afl_forkserver *fsrv, char **argv);
 
 #endif