mirror of
https://github.com/Interlisp/maiko.git
synced 2026-02-23 23:52:20 +00:00
... start by fixing the include files and the fallout in C source from removing includes not directly needed by headers that previously included them.
8 lines
249 B
C
8 lines
249 B
C
#ifndef MKCELLDEFS_H
|
|
#define MKCELLDEFS_H 1
|
|
#include "lispemul.h" /* for LispPTR, DLword */
|
|
LispPTR N_OP_createcell(register LispPTR tos);
|
|
DLword *createcell68k(unsigned int type);
|
|
LispPTR Create_n_Set_Cell(unsigned int type, LispPTR value);
|
|
#endif
|