/*
 * KCLL -  Ken and Chee's Limey Lisp  
 * All Rights to the code and any products created with this code is 
 * hereby granted. 
 *
 * I.E. You can do whatever the hell you want with this code. 
 * The only restriction is that this copyright notice not be modified.
 */

/*

Ken and Chee's Limey Lisp

*/

#ifndef KCLL_INC
#define KCLL_INC

#include "config.h"

#include "obj.h"
#include "read.h"
#include "stream.h"
#include "sym.h"
#include "comp.h"
#include "lbc.h"
#include "closure.h"
#include "cons.h"
#include "num.h"
#include "gc.h"
#include "env.h"
#include "mem.h"
#include "vector.h"
#include "error.h"
#include "cont.h"

#endif
