diff options
author | Diego Biurrun <diego@biurrun.de> | 2006-01-23 00:57:59 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2006-01-23 00:57:59 +0000 |
commit | fdc7b57042c20ea8a8d8758543e542d28d56a3e1 (patch) | |
tree | 795b1621cba2a4454fa150e209b118d856927bde /libavformat | |
parent | 39a64e3023436af020fb2846880f99c2160e13f2 (diff) | |
download | ffmpeg-fdc7b57042c20ea8a8d8758543e542d28d56a3e1.tar.gz |
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')
-rw-r--r-- | libavformat/os_support.c | 4 |
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) |