summaryrefslogtreecommitdiffstats
path: root/lib.h
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2018-11-07 07:03:15 -0800
committerKaz Kylheku <kaz@kylheku.com>2018-11-07 07:03:15 -0800
commit19dc84bcf137ed742e824e2b86e403b9f53031fb (patch)
treefb69c06ce6f60f85e49ed6de2f316873d39af47c /lib.h
parent472b34daf3787e0a05891a1f1cdfc89316b8fc8b (diff)
downloadtxr-19dc84bcf137ed742e824e2b86e403b9f53031fb.tar.gz
txr-19dc84bcf137ed742e824e2b86e403b9f53031fb.tar.bz2
txr-19dc84bcf137ed742e824e2b86e403b9f53031fb.zip
lib: remove unused type checking functions.
* lib.c (type_check2, type_check3): Functions removed. * lib.h (type_check2, type_check3): Declarations removed.
Diffstat (limited to 'lib.h')
-rw-r--r--lib.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib.h b/lib.h
index 11228ced..224c88f8 100644
--- a/lib.h
+++ b/lib.h
@@ -515,8 +515,6 @@ INLINE val type_check(val self, val obj, type_t typecode)
throw_mismatch(self, obj, typecode);
return t;
}
-val type_check2(val obj, int, int);
-val type_check3(val obj, int, int, int);
val class_check(val cobj, val class_sym);
val car(val cons);
val cdr(val cons);