summaryrefslogtreecommitdiff
path: root/lisp.y
diff options
context:
space:
mode:
Diffstat (limited to 'lisp.y')
-rw-r--r--lisp.y5
1 files changed, 0 insertions, 5 deletions
diff --git a/lisp.y b/lisp.y
index 8ed479d..e8dd961 100644
--- a/lisp.y
+++ b/lisp.y
@@ -1,15 +1,10 @@
%{
#include <stdio.h>
#include <stdlib.h>
-#include <math.h>
#include "lisp.h"
int yylex(void);
int yyerror(const char *s);
-
-static int is_integer(double x) {
- return floor(x) == x && isfinite(x);
-}
%}
%union {