source: abuse/trunk/src/include/lcache.hpp @ 39

Last change on this file since 39 was 20, checked in by Sam Hocevar, 18 years ago
  • disabled GC, caching system and custom malloc.
File size: 335 bytes
Line 
1#ifndef __LCACHE_HPP_
2#define __LCACHE_HPP_
3#include "lisp.hpp"
4
5#ifdef SCADALISP
6#define can_cache_lisp() 0
7#else
8#define can_cache_lisp() 0 /* XXX */
9#endif
10
11long block_size(Cell *level);              // return number of bytes to save this block of code
12void write_level(bFILE *fp, Cell *level);
13Cell *load_block(bFILE *fp);
14
15#endif
Note: See TracBrowser for help on using the repository browser.