1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-22 10:21:30 +00:00
Interlisp.maiko/inc/vars3defs.h
Nick Briggs c60b522012
Files should explicitly include the definitions they directly depend on (#355)
... start by fixing the include files and the fallout in C source from
removing includes not directly needed by headers that previously included
them.
2021-02-13 21:41:31 -08:00

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