diff options
Diffstat (limited to 'src/common.h')
-rw-r--r-- | src/common.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/common.h b/src/common.h index 2633c83..0e0fd3b 100644 --- a/src/common.h +++ b/src/common.h @@ -20,6 +20,12 @@ #ifndef REDSHIFT_COMMON_H #define REDSHIFT_COMMON_H +#ifndef WINDOWS +# if defined(__WIN32__) || defined(_WIN32) +# define WINDOWS +# endif +#endif + #include <sys/stat.h> #include <sys/types.h> #include <dirent.h> @@ -37,7 +43,7 @@ #ifdef _POSIX_TIMERS # include <sys/time.h> #endif -#if defined(__WIN32__) || defined(_WIN32) +#ifdef WINDOWS # include <windows.h> #else # include <pwd.h> |