summaryrefslogtreecommitdiffhomepage
path: root/tests/fuzz/test-fuzz.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/fuzz/test-fuzz.c')
-rw-r--r--tests/fuzz/test-fuzz.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/fuzz/test-fuzz.c b/tests/fuzz/test-fuzz.c
new file mode 100644
index 0000000..40649e2
--- /dev/null
+++ b/tests/fuzz/test-fuzz.c
@@ -0,0 +1,9 @@
+#include <stdio.h>
+#include <stdint.h>
+#include <stddef.h>
+#include <limits.h>
+
+int LLVMFuzzerTestOneInput(const uint8_t *input, size_t size)
+{
+ return 0;
+}