summaryrefslogtreecommitdiffstats
path: root/osdep
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-01-10 18:54:44 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-01-10 18:54:44 +0000
commit4cb9cfc6eead9bb182159d20a425baaaf01d9927 (patch)
tree712facfaac5c6cc6915a2481814eae29d27325c2 /osdep
parent59a431eff92502fe1501a3ac31b82003083b7472 (diff)
downloadmpv-4cb9cfc6eead9bb182159d20a425baaaf01d9927.tar.bz2
mpv-4cb9cfc6eead9bb182159d20a425baaaf01d9927.tar.xz
Remove redundant ifdef, this file is only ever compiled on MinGW.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@21872 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'osdep')
-rw-r--r--osdep/glob-win.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/osdep/glob-win.c b/osdep/glob-win.c
index e1408412cd..5e77771331 100644
--- a/osdep/glob-win.c
+++ b/osdep/glob-win.c
@@ -4,7 +4,6 @@
#include "config.h"
#ifndef HAVE_GLOB
-#ifdef __MINGW32__
#include <windows.h>
#include "glob.h"
@@ -71,7 +70,6 @@ void globfree(glob_t *pglob)
}
free(pglob->gl_pathv);
}
-#endif /*__MINGW32__*/
#endif /*HAVE_GLOB*/
#if 0