mirror of
https://github.com/Interlisp/maiko.git
synced 2026-01-11 23:43:19 +00:00
8 lines
197 B
C
8 lines
197 B
C
#ifndef STORAGEDEFS_H
|
|
#define STORAGEDEFS_H 1
|
|
#include "lispemul.h" /* for LispPTR */
|
|
void checkfor_storagefull(unsigned int npages);
|
|
LispPTR newpage(LispPTR base);
|
|
void init_storage(void);
|
|
#endif
|