mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
removed unsupported platforms from an ifdef macro.
These lines were mistakenly removed at r19681 and recovered too much at r19684. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19685 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
5e1311da38
commit
5a7c5d34fb
1 changed files with 1 additions and 1 deletions
2
eval.c
2
eval.c
|
@ -31,7 +31,7 @@ VALUE rb_eSysStackError;
|
|||
|
||||
#if defined(__APPLE__)
|
||||
#define environ (*_NSGetEnviron())
|
||||
#elif !defined(_WIN32) && !defined(__MACOS__) || defined(_WIN32_WCE)
|
||||
#elif !defined(_WIN32)
|
||||
extern char **environ;
|
||||
#endif
|
||||
char **rb_origenviron;
|
||||
|
|
Loading…
Reference in a new issue