klisp

an open source interpreter for the Kernel Programming Language.
git clone http://git.hanabi.in/repos/klisp.git
Log | Files | Refs | README

commit ebd9f720a4f6b5f6ba139dcc9e3c22856a00698e
parent 4df6bc72e51871dbbac36e5cc6b0dd0d416d8c58
Author: Andres Navarro <canavarro82@gmail.com>
Date:   Tue, 12 Apr 2011 00:01:05 -0300

Added klisp includes to imath.c.

Diffstat:
Msrc/Makefile | 4++--
Msrc/imath.c | 6++++++
2 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/src/Makefile b/src/Makefile @@ -139,4 +139,4 @@ kgnumbers.o: kgnumbers.c kgnumbers.h kghelpers.h kstate.h klisp.h \ kgstrings.o: kgstrings.c kgstrings.h kghelpers.h kstate.h klisp.h \ kobject.h kerror.h kapplicative.h koperative.h kcontinuation.h \ ksymbol.h -imath.o: kobject.h kstate.h -\ No newline at end of file +imath.o: kobject.h kstate.h kmem.h kerror.h +\ No newline at end of file diff --git a/src/imath.c b/src/imath.c @@ -29,6 +29,12 @@ #define STATIC static #endif +/* Andres Navarro: klisp includes */ +#include "kobject.h" +#include "kstate.h" +#include "kmem.h" +#include "kerror.h" + /* {{{ Constants */ const mp_result MP_OK = 0; /* no error, all is well */