mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
coroutine/ucontext/Context.c: define __EXTENSIONS__ explicitly
instead of ruby/config.h, per samuel's request.
dbfd4b780e (diff-7fd78c3cc8a19b7e0637502983ec26ff)
This commit is contained in:
parent
c3abbc1b2f
commit
f4d9daf2b6
1 changed files with 6 additions and 1 deletions
|
@ -5,7 +5,12 @@
|
|||
* Copyright, 2019, by Samuel Williams. All rights reserved.
|
||||
*/
|
||||
|
||||
#include "ruby/config.h"
|
||||
/* According to Solaris' ucontext.h, makecontext, etc. are removed in SUSv4.
|
||||
* To enable the prototype declarations, we need to define __EXTENSIONS__.
|
||||
*/
|
||||
#if defined(__sun) && !defined(__EXTENSIONS__)
|
||||
#define __EXTENSIONS__
|
||||
#endif
|
||||
#include "Context.h"
|
||||
|
||||
void coroutine_trampoline(void * _start, void * _context)
|
||||
|
|
Loading…
Add table
Reference in a new issue