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

Remove useless (partially used) check for stdint.h

parent 3054d03d
......@@ -829,7 +829,7 @@ AC_EGREP_HEADER(strncasecmp,strings.h,[
AC_MSG_RESULT(no)])
dnl Check for headers
AC_CHECK_HEADERS(time.h stdint.h getopt.h strings.h locale.h)
AC_CHECK_HEADERS(time.h getopt.h strings.h locale.h)
AC_CHECK_HEADERS(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([net/if.h], [], [],
......
......@@ -29,12 +29,7 @@
#endif
#include <math.h> /* sqrt */
#ifdef HAVE_STDINT_H
# include <stdint.h> /* int16_t .. */
#else
# include <inttypes.h> /* int16_t .. */
#endif
#include <stdint.h> /* int16_t .. */
#ifdef HAVE_UNISTD_H
# include <unistd.h>
......
......@@ -34,11 +34,7 @@
#include <vlc_common.h>
#include <vlc_plugin.h>
#ifdef HAVE_STDINT_H
# include <stdint.h> /* int16_t .. */
#else
# include <inttypes.h> /* int16_t .. */
#endif
#include <stdint.h> /* int16_t .. */
#ifdef HAVE_UNISTD_H
# include <unistd.h>
......
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