diff options
Diffstat (limited to 'lib/putenv.c')
| -rw-r--r-- | lib/putenv.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/putenv.c b/lib/putenv.c index 556d5f82302..801e372c329 100644 --- a/lib/putenv.c +++ b/lib/putenv.c | |||
| @@ -34,7 +34,7 @@ | |||
| 34 | #include <string.h> | 34 | #include <string.h> |
| 35 | #include <unistd.h> | 35 | #include <unistd.h> |
| 36 | 36 | ||
| 37 | #if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__ | 37 | #if defined _WIN32 && ! defined __CYGWIN__ |
| 38 | # define WIN32_LEAN_AND_MEAN | 38 | # define WIN32_LEAN_AND_MEAN |
| 39 | # include <windows.h> | 39 | # include <windows.h> |
| 40 | #endif | 40 | #endif |
| @@ -153,7 +153,7 @@ putenv (char *string) | |||
| 153 | *ep = string; | 153 | *ep = string; |
| 154 | break; | 154 | break; |
| 155 | } | 155 | } |
| 156 | # if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__ | 156 | # if defined _WIN32 && ! defined __CYGWIN__ |
| 157 | if (putenv_result == 0) | 157 | if (putenv_result == 0) |
| 158 | { | 158 | { |
| 159 | /* _putenv propagated "NAME= " into the subprocess environment; | 159 | /* _putenv propagated "NAME= " into the subprocess environment; |