Updated fuzz.h

This commit is contained in:
Google AutoFuzz Team 2019-06-24 09:49:23 -04:00 committed by Jordan Bayles
parent 0e3b22dd3a
commit 3247202676

View File

@ -6,9 +6,9 @@
#ifndef FUZZ_H_INCLUDED
#define FUZZ_H_INCLUDED
#include <stddef.h>
#include <stdint.h>
#include <cstddef>
#include <cstdint>
extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size);
int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size);
#endif // ifndef FUZZ_H_INCLUDED