summaryrefslogtreecommitdiffstats
path: root/arith.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2021-04-27 19:13:51 -0700
committerKaz Kylheku <kaz@kylheku.com>2021-04-27 19:13:51 -0700
commit883afc9be02cc90e8644870288ad670a02986669 (patch)
tree2a9b46537edf0aab4cb69abe461b7b2d17a691a2 /arith.c
parent77d1199f8a7d7a5be06d8dfa0b0394f803fd8525 (diff)
downloadtxr-883afc9be02cc90e8644870288ad670a02986669.tar.gz
txr-883afc9be02cc90e8644870288ad670a02986669.tar.bz2
txr-883afc9be02cc90e8644870288ad670a02986669.zip
lib: diagnostic functions moved out of arith.c.
* arith.c (invalid_ops, invalid_op): Static functions removed. * unwind.c (invalid_oips, invalid_op): Functions added here, as external functions. * unwind.h (invalid_oips, invalid_op): Declared.
Diffstat (limited to 'arith.c')
-rw-r--r--arith.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/arith.c b/arith.c
index 5e126f93..c4642782 100644
--- a/arith.c
+++ b/arith.c
@@ -132,17 +132,6 @@ static NORETURN void not_integer(val self, val obj)
uw_throwf(type_error_s, lit("~a: ~s is not an integer"), self, obj, nao);
}
-static NORETURN void invalid_ops(val self, val obj1, val obj2)
-{
- uw_throwf(type_error_s, lit("~a: invalid operands ~s ~s"), self,
- obj1, obj2, nao);
-}
-
-static NORETURN void invalid_op(val self, val obj)
-{
- uw_throwf(type_error_s, lit("~a: invalid operand ~s"), self, obj, nao);
-}
-
int num_to_buffer(val num, mem_t *buf, int bytes)
{
switch (type(num)) {