Commit 353c7215 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Remove useless check for inttypes.h

parent 06edede5
...@@ -829,7 +829,7 @@ AC_EGREP_HEADER(strncasecmp,strings.h,[ ...@@ -829,7 +829,7 @@ AC_EGREP_HEADER(strncasecmp,strings.h,[
AC_MSG_RESULT(no)]) AC_MSG_RESULT(no)])
dnl Check for headers dnl Check for headers
AC_CHECK_HEADERS(time.h errno.h stdint.h stdbool.h getopt.h strings.h inttypes.h sys/int_types.h wchar.h locale.h) AC_CHECK_HEADERS(time.h errno.h stdint.h stdbool.h getopt.h strings.h sys/int_types.h wchar.h locale.h)
AC_CHECK_HEADERS(sys/sockio.h fcntl.h sys/types.h sys/time.h sys/times.h sys/ioctl.h sys/stat.h xlocale.h) AC_CHECK_HEADERS(sys/sockio.h fcntl.h sys/types.h sys/time.h sys/times.h sys/ioctl.h sys/stat.h xlocale.h)
AC_CHECK_HEADERS([arpa/inet.h netinet/in.h netinet/udplite.h sys/eventfd.h]) AC_CHECK_HEADERS([arpa/inet.h netinet/in.h netinet/udplite.h sys/eventfd.h])
AC_CHECK_HEADERS([net/if.h], [], [], AC_CHECK_HEADERS([net/if.h], [], [],
......
...@@ -32,7 +32,7 @@ ...@@ -32,7 +32,7 @@
#ifdef HAVE_STDINT_H #ifdef HAVE_STDINT_H
# include <stdint.h> /* int16_t .. */ # include <stdint.h> /* int16_t .. */
#elif defined(HAVE_INTTYPES_H) #else
# include <inttypes.h> /* int16_t .. */ # include <inttypes.h> /* int16_t .. */
#endif #endif
......
...@@ -36,7 +36,7 @@ ...@@ -36,7 +36,7 @@
#ifdef HAVE_STDINT_H #ifdef HAVE_STDINT_H
# include <stdint.h> /* int16_t .. */ # include <stdint.h> /* int16_t .. */
#elif HAVE_INTTYPES_H #else
# include <inttypes.h> /* int16_t .. */ # include <inttypes.h> /* int16_t .. */
#endif #endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment