]> git.sesse.net Git - vlc/commitdiff
<inttypes.h> is a superset of <stdint.h>, use it instead.
authorRémi Denis-Courmont <rem@videolan.org>
Thu, 1 May 2008 14:38:24 +0000 (17:38 +0300)
committerRémi Denis-Courmont <rem@videolan.org>
Thu, 1 May 2008 14:38:24 +0000 (17:38 +0300)
include/vlc_common.h

index e01dd61f48536f9dab1143015407da223866f7cf..825a0eba322b5cd6fd32e6e2239ad9562349d50a 100644 (file)
@@ -59,9 +59,7 @@
 /*****************************************************************************
  * Basic types definitions
  *****************************************************************************/
-#if defined( HAVE_STDINT_H )
-#   include <stdint.h>
-#elif defined( HAVE_INTTYPES_H )
+#if defined( HAVE_INTTYPES_H )
 #   include <inttypes.h>
 #elif defined( SYS_CYGWIN )
 #   include <sys/types.h>