Fix alignment errors in hashtable fuzzer
[openssl.git] / fuzz / fuzzer.h
index cd460dea8d94445f6076a157fb367de27564ad88..76eda2ce5d3f4311e8487dd9a827249b1bd787a1 100644 (file)
@@ -8,6 +8,9 @@
  * or in the file LICENSE in the source distribution.
  */
 
+#include <stddef.h>              /* for size_t */
+#include <openssl/e_os2.h>       /* for uint8_t */
+
 int FuzzerTestOneInput(const uint8_t *buf, size_t len);
 int FuzzerInitialize(int *argc, char ***argv);
 void FuzzerCleanup(void);