diff --git a/compat/unsetenv.c b/compat/unsetenv.c index 4ea18569c24090..bf5fd7063bc989 100644 --- a/compat/unsetenv.c +++ b/compat/unsetenv.c @@ -2,6 +2,9 @@ void gitunsetenv (const char *name) { +#if !defined(__MINGW32__) + extern char **environ; +#endif int src, dst; size_t nmln;