fork_fuzz.h (417B)
1/* 2 * Fork-based fuzzing helpers 3 * 4 * Copyright Red Hat Inc., 2019 5 * 6 * Authors: 7 * Alexander Bulekov <alxndr@bu.edu> 8 * 9 * This work is licensed under the terms of the GNU GPL, version 2 or later. 10 * See the COPYING file in the top-level directory. 11 * 12 */ 13 14#ifndef FORK_FUZZ_H 15#define FORK_FUZZ_H 16 17extern uint8_t __FUZZ_COUNTERS_START; 18extern uint8_t __FUZZ_COUNTERS_END; 19 20void counter_shm_init(void); 21 22#endif 23