diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2018-11-07 07:03:15 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2018-11-07 07:03:15 -0800 |
commit | 19dc84bcf137ed742e824e2b86e403b9f53031fb (patch) | |
tree | fb69c06ce6f60f85e49ed6de2f316873d39af47c /lib.h | |
parent | 472b34daf3787e0a05891a1f1cdfc89316b8fc8b (diff) | |
download | txr-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.h | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -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); |