This commit is contained in:
Alex Shinn 2009-12-29 19:04:59 +09:00
commit ef97713ab7
3 changed files with 3 additions and 1 deletions

View file

@ -97,6 +97,7 @@ include/chibi/install.h: Makefile
echo '#define sexp_default_module_dir "'$(MODDIR)'"' >> $@
echo '#define sexp_platform "'$(PLATFORM)'"' >> $@
echo '#define sexp_version "'`cat VERSION`'"' >> $@
echo '#define sexp_release_name "'`cat RELEASE`'"' >> $@
sexp.o: sexp.c gc.c opt/bignum.c $(INCLUDES) Makefile
$(CC) -c $(XCPPFLAGS) $(XCFLAGS) $(CLIBFLAGS) -o $@ $<

1
RELEASE Normal file
View file

@ -0,0 +1 @@
lithium

View file

@ -421,7 +421,7 @@
;; math utils
(define (number? x) (if (fixnum? x) #t (flonum? x)))
(define (number? x) (if (fixnum? x) #t (if (bignum? x) #t (flonum? x))))
(define complex? number?)
(define rational? number?)
(define real? number?)