Commit 1a41b09c 1a41b09c1e0c9c0e267914c06143d1b5dc688dcd by Sergey Poznyakoff

Protect the declaration of environ by #if.

1 parent 8b2b3b53
...@@ -17,7 +17,9 @@ ...@@ -17,7 +17,9 @@
17 17
18 #include "mail.h" 18 #include "mail.h"
19 19
20 #if !HAVE_DECL_ENVIRON
20 extern char **environ; 21 extern char **environ;
22 #endif
21 23
22 int 24 int
23 mail_setenv (int argc, char **argv) 25 mail_setenv (int argc, char **argv)
......