This commit is contained in:
Justin Ethier 2017-05-24 17:23:23 +00:00
parent dc7e68d05a
commit 9242c424c3

View file

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