[MPlayer-cvslog] r36047 - trunk/loader/com.h

diego subversion at mplayerhq.hu
Sat Mar 23 15:48:16 CET 2013


Author: diego
Date: Sat Mar 23 15:48:16 2013
New Revision: 36047

Log:
loader: Simplify stdint.h #include handling.

There is no need for an ifdef, we assume stdint.h to be available.

Modified:
   trunk/loader/com.h

Modified: trunk/loader/com.h
==============================================================================
--- trunk/loader/com.h	Sat Mar 23 15:32:26 2013	(r36046)
+++ trunk/loader/com.h	Sat Mar 23 15:48:16 2013	(r36047)
@@ -6,13 +6,9 @@
 #ifndef MPLAYER_COM_H
 #define MPLAYER_COM_H
 
-#include "config.h"
-
-#ifdef HAVE_STDINT_H
 #include <stdint.h>
-#else
-#include <inttypes.h>
-#endif
+
+#include "config.h"
 
 /**
  * Internal functions and structures for COM emulation code.


More information about the MPlayer-cvslog mailing list