1
0
Fork 0
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:
Yusuke Endoh 2019-12-05 22:24:58 +09:00
parent c3abbc1b2f
commit f4d9daf2b6

View file

@ -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)