summaryrefslogtreecommitdiffstats
path: root/lib.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib.c')
-rw-r--r--lib.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/lib.c b/lib.c
index 09ca61c6..3f01ab85 100644
--- a/lib.c
+++ b/lib.c
@@ -1418,11 +1418,6 @@ val consp(val obj)
return (ty == CONS || ty == LCONS) ? t : nil;
}
-val nullp(val obj)
-{
- return obj == 0 ? t : nil;
-}
-
val atom(val obj)
{
return if3(consp(obj), nil, t);