aboutsummaryrefslogtreecommitdiffstats
path: root/cont.c
diff options
context:
space:
mode:
authorSamuel Williams <samuel.williams@oriontransfer.co.nz>2019-06-29 13:07:07 +1200
committerSamuel Williams <samuel.williams@oriontransfer.co.nz>2019-07-18 20:54:54 +1200
commit7291fef55c90b9ab6b3c22018b16972861b98c9d (patch)
tree24fd7dbc1df36529d525a93f9db24ad2fa105897 /cont.c
parent91aae651bf90be46773a246e4c46b9e221353fbd (diff)
downloadruby-7291fef55c90b9ab6b3c22018b16972861b98c9d.tar.gz
Improve build process and coroutine implementation selection.
Diffstat (limited to 'cont.c')
-rw-r--r--cont.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/cont.c b/cont.c
index 9ebc2c1a1f..c4de4a0c42 100644
--- a/cont.c
+++ b/cont.c
@@ -15,12 +15,7 @@
#include "eval_intern.h"
#include "mjit.h"
-#ifdef FIBER_USE_COROUTINE
-#include FIBER_USE_COROUTINE
-#else
-// Stack copying implementation, should work everywhere:
-#include "coroutine/copy/Context.h"
-#endif
+#include COROUTINE_H
#ifndef _WIN32
#include <unistd.h>