Wrap stdint.h include in ifdef HAVE_STDINT_H.

This commit is contained in:
Darren Tucker 2020-08-17 21:34:32 +10:00
parent eaf2765efe
commit 05c215de8d
1 changed files with 2 additions and 0 deletions

View File

@ -28,7 +28,9 @@
#ifndef HAVE_MEMMEM #ifndef HAVE_MEMMEM
#include <string.h> #include <string.h>
#ifdef HAVE_STDINT_H
#include <stdint.h> #include <stdint.h>
#endif
static char * static char *
twobyte_memmem(const unsigned char *h, size_t k, const unsigned char *n) twobyte_memmem(const unsigned char *h, size_t k, const unsigned char *n)