diff options
author | Ian Lance Taylor <ian@gcc.gnu.org> | 2011-12-20 18:14:30 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2011-12-20 18:14:30 +0000 |
commit | d48be5dfaf50c025bd4bdbaed375f1806d8c3bfb (patch) | |
tree | 5dfd4daece115bfcf145e5502f4acae0d8b6e4d6 /libgo/go/syscall | |
parent | 4a5e00ca50a3caf1757943aa9df793e4f2865547 (diff) | |
download | gcc-d48be5dfaf50c025bd4bdbaed375f1806d8c3bfb.zip gcc-d48be5dfaf50c025bd4bdbaed375f1806d8c3bfb.tar.gz gcc-d48be5dfaf50c025bd4bdbaed375f1806d8c3bfb.tar.bz2 |
libgo: Fix use of -D_GNU_SOURCE and friends when building libgo.
From-SVN: r182548
Diffstat (limited to 'libgo/go/syscall')
-rw-r--r-- | libgo/go/syscall/wait.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libgo/go/syscall/wait.c b/libgo/go/syscall/wait.c index d3c90d7..fd7b65e 100644 --- a/libgo/go/syscall/wait.c +++ b/libgo/go/syscall/wait.c @@ -7,9 +7,6 @@ We use C code to extract the wait status so that we can easily be OS-independent. */ -#define _GNU_SOURCE -#define __EXTENSIONS__ - #include <stdint.h> #include <sys/wait.h> |