diff options
author | vanhauser-thc <vh@thc.org> | 2022-10-24 20:06:57 +0200 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2022-10-24 20:06:57 +0200 |
commit | 05e0825d66d938308842c25c4c74b5cdd4a885eb (patch) | |
tree | 724dd6978ebb10f52c4bdda86eb44a5494b33409 /include/common.h | |
parent | 02502c1a543b2150bec78fbac2f0fcf1f4cd7a5a (diff) | |
download | afl++-05e0825d66d938308842c25c4c74b5cdd4a885eb.tar.gz |
changelog update
Diffstat (limited to 'include/common.h')
-rw-r--r-- | include/common.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/common.h b/include/common.h index c1ba0f20..f6d1dd1a 100644 --- a/include/common.h +++ b/include/common.h @@ -77,7 +77,9 @@ int parse_afl_kill_signal(u8 *numeric_signal_as_str, int default_signal); /* Configure the signals that are used to kill the forkserver and the forked childs. If `afl_kill_signal_env` or `afl_fsrv_kill_signal_env` is NULL, the appropiate values are read from the environment. */ -void configure_afl_kill_signals(afl_forkserver_t *fsrv, char* afl_kill_signal_env, char* afl_fsrv_kill_signal_env); +void configure_afl_kill_signals(afl_forkserver_t *fsrv, + char *afl_kill_signal_env, + char *afl_fsrv_kill_signal_env); /* Read a bitmap from file fname to memory This is for the -B option again. */ @@ -140,3 +142,4 @@ FILE *create_ffile(u8 *fn); s32 create_file(u8 *fn); #endif + |