fuzz/fuzzer.h: Add extern 'C'

This commit is contained in:
Tim Rühsen 2017-06-09 20:35:46 +02:00
parent f41c6aaf63
commit bce2e9acb0
1 changed files with 3 additions and 0 deletions

View File

@ -25,4 +25,7 @@
#include <stddef.h> // size_t
#include <stdint.h> // uint8_t
#ifdef __cplusplus
extern "C"
#endif
int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size);