mirror of
https://github.com/openssl/openssl.git
synced 2024-11-27 05:21:51 +08:00
Use <openssl/e_os2.h> rather than <stdint.h>
<stdint.h> is C99, which means that on older compiler, it can't be included. We have code in <openssl/e_os2.h> that compensates. Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/19697)
This commit is contained in:
parent
7489ada9f3
commit
7bc5ce4a79
@ -8,8 +8,8 @@
|
||||
* or in the file LICENSE in the source distribution.
|
||||
*/
|
||||
|
||||
#include <stdint.h> /* for uint8_t */
|
||||
#include <stddef.h> /* for size_t */
|
||||
#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);
|
||||
|
Loading…
Reference in New Issue
Block a user