diff --git a/common.h b/common.h index 512096ca1d..4299ef18ce 100644 --- a/common.h +++ b/common.h @@ -765,7 +765,7 @@ static __inline int readenv_atoi(char *env) { return 0; } #else -#ifdef OS_WINDOWS +#if defined(OS_WINDOWS) && !defined(OS_CYGWIN_NT) static __inline int readenv_atoi(char *env) { env_var_t p; return readenv(p,env) ? 0 : atoi(p);