Comment #includes by configure's #ifdef HAVE_*

(Logical change 1.506)
edge.strict_endians
!uv 2004-08-20 12:04:47 +00:00
parent 682b8dab6b
commit 86323fac66
1 changed files with 9 additions and 3 deletions

View File

@ -21,9 +21,15 @@
#include "config.h"
#include <stdlib.h>
#include <errno.h>
#include <string.h>
#ifdef HAVE_STDLIB_H
# include <stdlib.h>
#endif
#ifdef HAVE_ERRNO_H
# include <errno.h>
#endif
#ifdef HAVE_STRING_H
# include <string.h>
#endif
#include "types.h"
#include "debug.h"