Wrap stdint.h inside #ifdef HAVE_STDINT_H.

This commit is contained in:
Darren Tucker 2016-03-09 13:14:18 +11:00
parent 2c48bd344d
commit e960051f9a
1 changed files with 3 additions and 1 deletions

View File

@ -10,7 +10,9 @@
#include <sys/types.h>
#include <sys/param.h>
#include <stdio.h>
#include <stdint.h>
#ifdef HAVE_STDINT_H
# include <stdint.h>
#endif
#include <stdlib.h>
#include <string.h>
#include <unistd.h>