summaryrefslogtreecommitdiff
path: root/gc.c
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-01-10 03:50:23 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-01-10 03:50:23 +0000
commit931459d974390436161aa98fa5a4fc94e00c3951 (patch)
tree95466315fc233a5a9790a891f5999c980efa2f1d /gc.c
parent56dc6f5acc944e06420614b6c2a475376a887d95 (diff)
* gc.c: in fact, i686-linux doesn't need to define _XOPEN_SOURCE 600.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@34258 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'gc.c')
-rw-r--r--gc.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/gc.c b/gc.c
index 696fb7ab59..bd1483a1de 100644
--- a/gc.c
+++ b/gc.c
@@ -37,9 +37,6 @@
#if defined _WIN32 || defined __CYGWIN__
#include <windows.h>
#elif defined(HAVE_POSIX_MEMALIGN)
-# ifdef __linux__ /* i386 linux needs #define _XOPEN_SOURCE 600 to use posix_memalign */
-# define _XOPEN_SOURCE 600
-# endif
#elif defined(HAVE_MEMALIGN)
#include <malloc.h>
#endif