mirror of
https://github.com/Interlisp/maiko.git
synced 2026-01-22 10:21:30 +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.
9 lines
274 B
C
9 lines
274 B
C
#ifndef VARS3DEFS_H
|
|
#define VARS3DEFS_H 1
|
|
#include "cell.h" /* for cadr_cell */
|
|
#include "lispemul.h" /* for LispPTR */
|
|
struct cadr_cell cadr(LispPTR cell_adr);
|
|
LispPTR N_OP_arg0(register LispPTR tos);
|
|
LispPTR N_OP_assoc(register LispPTR key, register LispPTR list);
|
|
#endif
|