summaryrefslogtreecommitdiff
path: root/libavformat/os_support.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2006-01-23 00:57:59 +0000
committerDiego Biurrun <diego@biurrun.de>2006-01-23 00:57:59 +0000
commitfdc7b57042c20ea8a8d8758543e542d28d56a3e1 (patch)
tree795b1621cba2a4454fa150e209b118d856927bde /libavformat/os_support.c
parent39a64e3023436af020fb2846880f99c2160e13f2 (diff)
Skip all includes for WinCE, instead of falling through to the #else case.
Originally committed as revision 4884 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/os_support.c')
-rw-r--r--libavformat/os_support.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/libavformat/os_support.c b/libavformat/os_support.c
index a99a6a50db..6f3da65f29 100644
--- a/libavformat/os_support.c
+++ b/libavformat/os_support.c
@@ -18,7 +18,9 @@
*/
#include "config.h"
#include "avformat.h"
-#if defined(CONFIG_WIN32) && !defined(CONFIG_WINCE)
+#if defined(CONFIG_WINCE)
+/* Skip includes on WinCE. */
+#elif defined(CONFIG_WIN32)
#include <sys/types.h>
#include <sys/timeb.h>
#elif defined(CONFIG_OS2)