Wrap stdint.h inside HAVE_STDINT_H.

This commit is contained in:
Darren Tucker 2020-01-14 14:41:47 +11:00
parent a0989b6021
commit 429170f273
1 changed files with 3 additions and 1 deletions

View File

@ -23,7 +23,9 @@
#include <dlfcn.h>
#include <stddef.h>
#include <stdint.h>
#ifdef HAVE_STDINT_H
# include <stdint.h>
#endif
#include <string.h>
#include <stdio.h>