From 9242c424c361828e1934fa8117bba3c7552c0668 Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Wed, 24 May 2017 17:23:23 +0000 Subject: [PATCH] WIP --- include/cyclone/runtime.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/cyclone/runtime.h b/include/cyclone/runtime.h index 0995ee2a..880f6ec7 100644 --- a/include/cyclone/runtime.h +++ b/include/cyclone/runtime.h @@ -368,6 +368,8 @@ object Cyc_sum(void *data, object cont, int argc, object n, ...); object Cyc_sub(void *data, object cont, int argc, object n, ...); object Cyc_mul(void *data, object cont, int argc, object n, ...); object Cyc_div(void *data, object cont, int argc, object n, ...); +// Future idea, there may be uses for this in addition to if statements: +// #define Cyc_if(c,t,e) ((boolean_f != c) ? t : e) object Cyc_fast_sum(void *data, object ptr, object x, object y); object Cyc_fast_sub(void *data, object ptr, object x, object y); object Cyc_fast_mul(void *data, object ptr, object x, object y);