[vlc-devel] commit: <inttypes.h> is a superset of <stdint.h>, use it instead. ( Rémi Denis-Courmont )

git version control git at videolan.org
Thu May 1 16:45:17 CEST 2008


vlc | branch: master | Rémi Denis-Courmont <rem at videolan.org> | Thu May  1 17:38:24 2008 +0300| [7b86062d7e84e16fd96e7f41cb589b429064d803]

<inttypes.h> is a superset of <stdint.h>, use it instead.

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=7b86062d7e84e16fd96e7f41cb589b429064d803
---

 include/vlc_common.h |    4 +---
 1 files changed, 1 insertions(+), 3 deletions(-)

diff --git a/include/vlc_common.h b/include/vlc_common.h
index e01dd61..825a0eb 100644
--- a/include/vlc_common.h
+++ b/include/vlc_common.h
@@ -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>




More information about the vlc-devel mailing list