mirror of
https://github.com/Interlisp/maiko.git
synced 2026-01-15 15:57:13 +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
331 B
C
8 lines
331 B
C
#ifndef LOWLEV2DEFS_H
|
|
#define LOWLEV2DEFS_H 1
|
|
#include "lispemul.h" /* for LispPTR */
|
|
LispPTR N_OP_addbase(register int base, register int offset);
|
|
LispPTR N_OP_getbasebyte(register LispPTR base_addr, register int byteoffset);
|
|
LispPTR N_OP_putbasebyte(register LispPTR base_addr, register int byteoffset, register int tos);
|
|
#endif
|