From 5118a4e4562eb0f3e7af4b869d44f6dd1da71cf6 Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Mon, 20 Apr 2015 13:57:23 -0400 Subject: [PATCH] Added prototypes for Cyc_sub, etc --- runtime.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/runtime.h b/runtime.h index 8eb39498..4f88e28d 100644 --- a/runtime.h +++ b/runtime.h @@ -100,6 +100,9 @@ static common_type Cyc_sub_op(object x, object y); static common_type Cyc_mul_op(object x, object y); static common_type Cyc_div_op(object x, object y); static common_type Cyc_sum(int argc, object n, ...); +static common_type Cyc_sub(int argc, object n, ...); +static common_type Cyc_mul(int argc, object n, ...); +static common_type Cyc_div(int argc, object n, ...); static common_type Cyc_num_op_va_list(int argc, common_type (fn_op(object, object)), object n, va_list ns); static int equal(object,object); static list assq(object,list);