]> git.sesse.net Git - ffmpeg/blobdiff - tools/cws2fws.c
ffplay: get rid of void casts in the option table
[ffmpeg] / tools / cws2fws.c
index 68f7953b56bf04a705303147f037306ab49ed7d9..74588c10a695da76fa872346bda65d37c87743a3 100644 (file)
@@ -6,11 +6,17 @@
  * This utility converts compressed Macromedia Flash files to uncompressed ones.
  */
 
+#include "config.h"
 #include <sys/stat.h>
 #include <fcntl.h>
 #include <stdio.h>
 #include <stdlib.h>
+#if HAVE_UNISTD_H
 #include <unistd.h>
+#endif
+#if HAVE_IO_H
+#include <io.h>
+#endif
 #include <zlib.h>
 
 #ifdef DEBUG