diff options
author | Zdenek Kabelac <kabi@informatics.muni.cz> | 2002-07-18 17:11:27 +0000 |
---|---|---|
committer | Zdenek Kabelac <kabi@informatics.muni.cz> | 2002-07-18 17:11:27 +0000 |
commit | 9235088f0fb3a269a46f55b243122521cc31a10d (patch) | |
tree | 4e5041f8c6ba4fd2126ca8832f1638bd683e9e8e | |
parent | 79c0c7858d160d7b75a62190108aefff8fbf616d (diff) | |
download | ffmpeg-9235088f0fb3a269a46f55b243122521cc31a10d.tar.gz |
* using time.h for Cygwin systems as well
Originally committed as revision 777 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libav/utils.c | 2 |
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; |