Skip to content

Commit

Permalink
Use <openssl/e_os2.h> rather than <stdint.h>
Browse files Browse the repository at this point in the history
<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 #19697)

(cherry picked from commit 7bc5ce4)
  • Loading branch information
levitte committed Nov 17, 2022
1 parent c097598 commit 7fe68ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fuzz/fuzzer.h
Expand Up @@ -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);
Expand Down

0 comments on commit 7fe68ca

Please sign in to comment.