diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2000-12-04 18:29:29 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2000-12-04 18:29:29 +0000 |
commit | f5e7c1244ba605e4f26d02a1402af0d6f403875d (patch) | |
tree | 64466dcee9aa5e12beaed52660b1ed0b562d309c /newlib/libc/stdlib/system.c | |
parent | 768abc9c15e1bbde7dbe7946c0fa2df1b86eb568 (diff) | |
download | cygnal-f5e7c1244ba605e4f26d02a1402af0d6f403875d.tar.gz cygnal-f5e7c1244ba605e4f26d02a1402af0d6f403875d.tar.bz2 cygnal-f5e7c1244ba605e4f26d02a1402af0d6f403875d.zip |
2000-12-04 Joel Sherrill <joel@OARcorp.com>
* libc/stdlib/system.c: Avoid compiling do_system() for RTEMS.
Diffstat (limited to 'newlib/libc/stdlib/system.c')
-rw-r--r-- | newlib/libc/stdlib/system.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libc/stdlib/system.c b/newlib/libc/stdlib/system.c index 770996e57..cc12411e3 100644 --- a/newlib/libc/stdlib/system.c +++ b/newlib/libc/stdlib/system.c @@ -106,7 +106,7 @@ system (s) #endif -#if defined (unix) && !defined (__CYGWIN__) +#if defined (unix) && !defined (__CYGWIN__) && !defined(__rtems__) extern char **environ; /* Only deal with a pointer to environ, to work around subtle bugs with shared |