From 916e5389c74042d8fd9744981245152a46780ee4 Mon Sep 17 00:00:00 2001 From: Enno Rehling Date: Sun, 27 Feb 2011 08:01:23 +0100 Subject: [PATCH] include the correct header on linux --- src/util/os.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/util/os.c b/src/util/os.c index 6360869d0..263b44e42 100644 --- a/src/util/os.c +++ b/src/util/os.c @@ -2,7 +2,7 @@ #if defined(WIN32) #include -#elif defined(__GCC__) +#else #include #endif @@ -14,4 +14,4 @@ int os_mkdir(const char * path, int mode) #else /* POSIX is our last hope */ return mkdir(path, (mode_t)mode); #endif -} \ No newline at end of file +}