summaryrefslogtreecommitdiff
path: root/libav
diff options
context:
space:
mode:
authorZdenek Kabelac <kabi@informatics.muni.cz>2002-07-18 17:11:27 +0000
committerZdenek Kabelac <kabi@informatics.muni.cz>2002-07-18 17:11:27 +0000
commit9235088f0fb3a269a46f55b243122521cc31a10d (patch)
tree4e5041f8c6ba4fd2126ca8832f1638bd683e9e8e /libav
parent79c0c7858d160d7b75a62190108aefff8fbf616d (diff)
* using time.h for Cygwin systems as well
Originally committed as revision 777 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libav')
-rw-r--r--libav/utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libav/utils.c b/libav/utils.c
index 6311495e5d..e8e62e8ac8 100644
--- a/libav/utils.c
+++ b/libav/utils.c
@@ -22,12 +22,12 @@
#include <unistd.h>
#include <fcntl.h>
#include <sys/time.h>
-#include <time.h>
#else
#define strcasecmp _stricmp
#include <sys/types.h>
#include <sys/timeb.h>
#endif
+#include <time.h>
AVInputFormat *first_iformat;
AVOutputFormat *first_oformat;