summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2013-08-05 00:06:06 +0200
committerDiego Biurrun <diego@biurrun.de>2013-08-05 11:38:00 +0200
commitbea3d6f4363ff1bbbd99c1717f7498b9fdb12cfc (patch)
tree931a264ec93b8fc50eeb109bb28f61faa90c46a2 /tools
parentf824535a4a79c260b59d3178b8d958217caffd78 (diff)
ismindex: Replace mkdir ifdeffery by os_support.h #include
os_support.h contains more precise workarounds for non-POSIX mkdir().
Diffstat (limited to 'tools')
-rw-r--r--tools/ismindex.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/tools/ismindex.c b/tools/ismindex.c
index ad1f3a848c..cf89f5c1e1 100644
--- a/tools/ismindex.c
+++ b/tools/ismindex.c
@@ -34,13 +34,9 @@
#include <stdio.h>
#include <string.h>
-#include <sys/stat.h>
-#ifdef _WIN32
-#include <direct.h>
-#define mkdir(a, b) _mkdir(a)
-#endif
#include "libavformat/avformat.h"
+#include "libavformat/os_support.h"
#include "libavutil/intreadwrite.h"
#include "libavutil/mathematics.h"