diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2013-11-26 13:51:19 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2013-11-26 13:51:19 +0000 |
commit | 4d3c733045cfc14bb1b472a064fd69044f56ca51 (patch) | |
tree | 250cc4cda77bd11acff75592ea31bf7d0d5bf35d | |
parent | 6fe752f94f16b278f3415d82b202d32aab7ad84d (diff) | |
download | cygnal-4d3c733045cfc14bb1b472a064fd69044f56ca51.tar.gz cygnal-4d3c733045cfc14bb1b472a064fd69044f56ca51.tar.bz2 cygnal-4d3c733045cfc14bb1b472a064fd69044f56ca51.zip |
* libc/posix/posix_spawn.c: Drop using namespace.h.
-rw-r--r-- | newlib/ChangeLog | 4 | ||||
-rw-r--r-- | newlib/libc/posix/posix_spawn.c | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/newlib/ChangeLog b/newlib/ChangeLog index f2c9dbaa9..ea1c717b1 100644 --- a/newlib/ChangeLog +++ b/newlib/ChangeLog @@ -1,5 +1,9 @@ 2013-11-26 Corinna Vinschen <vinschen@redhat.com> + * libc/posix/posix_spawn.c: Drop using namespace.h. + +2013-11-26 Corinna Vinschen <vinschen@redhat.com> + * libc/posix/posix_spawn.c: Eliminate OS function calls not present in newlib or Cygwin. (process_spawnattr): Use sigprocmask rather than _sigprocmask. Use diff --git a/newlib/libc/posix/posix_spawn.c b/newlib/libc/posix/posix_spawn.c index d27c08ac0..e5655e29a 100644 --- a/newlib/libc/posix/posix_spawn.c +++ b/newlib/libc/posix/posix_spawn.c @@ -90,7 +90,6 @@ Supporting OS subroutines required: <<_close>>, <<dup2>>, <<_fcntl>>, #include <sys/cdefs.h> -#include "namespace.h" #include <sys/signal.h> #include <sys/queue.h> #include <sys/wait.h> @@ -103,7 +102,6 @@ Supporting OS subroutines required: <<_close>>, <<dup2>>, <<_fcntl>>, #include <stdlib.h> #include <string.h> #include <unistd.h> -#include "un-namespace.h" /* Only deal with a pointer to environ, to work around subtle bugs with shared libraries and/or small data systems where the user declares his own |