summaryrefslogtreecommitdiff
path: root/snappy_compress_fuzzer.cc
diff options
context:
space:
mode:
authorVictor Costan <costan@google.com>2020-04-29 19:32:47 +0000
committerVictor Costan <costan@google.com>2020-04-29 19:38:03 +0000
commit5417da69b7e150bcfb9c18304c0aa95d8caf7f34 (patch)
treea98189eb5c71da384d9c3238573058720701fd91 /snappy_compress_fuzzer.cc
parent251d935d5096da77c4fef26ea41b019430da5572 (diff)
downloadsnappy-git-5417da69b7e150bcfb9c18304c0aa95d8caf7f34.tar.gz
Switch from C headers to C++ headers.
This CL makes the following substitutions. * assert.h -> cassert * math.h -> cmath * stdarg.h -> cstdarg * stdio.h -> cstdio * stdlib.h -> cstdlib * string.h -> cstring stddef.h and stdint.h are not migrated to C++ headers. PiperOrigin-RevId: 309074805
Diffstat (limited to 'snappy_compress_fuzzer.cc')
-rw-r--r--snappy_compress_fuzzer.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/snappy_compress_fuzzer.cc b/snappy_compress_fuzzer.cc
index 1d0119e..1d4429a 100644
--- a/snappy_compress_fuzzer.cc
+++ b/snappy_compress_fuzzer.cc
@@ -28,9 +28,10 @@
//
// libFuzzer harness for fuzzing snappy compression code.
+#include <stddef.h>
+#include <stdint.h>
+
#include <cassert>
-#include <cstddef>
-#include <cstdint>
#include <string>
#include "snappy.h"