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 +}