1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* io.c, thread.c, ext/pty/pty.c, ext/fiddle/closure.c: use

__linux__ macro for consistency.



git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@33761 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
akr 2011-11-15 11:09:47 +00:00
parent e4081877a8
commit 3d25acdccc
5 changed files with 11 additions and 6 deletions

View file

@ -10,7 +10,7 @@ typedef struct {
ffi_type **argv;
} fiddle_closure;
#if defined(MACOSX) || defined(__linux) || defined(__OpenBSD__)
#if defined(MACOSX) || defined(__linux__) || defined(__OpenBSD__)
#define DONT_USE_FFI_CLOSURE_ALLOC
#endif