mirror of
https://github.com/Interlisp/maiko.git
synced 2026-02-02 14:51:23 +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.
15 lines
594 B
C
15 lines
594 B
C
#ifndef CAR_CDRDEFS_H
|
|
#define CAR_CDRDEFS_H 1
|
|
#include "cell.h" /* for ConsCell */
|
|
#include "lispemul.h" /* for LispPTR */
|
|
LispPTR car(register LispPTR datum);
|
|
LispPTR cdr(register LispPTR datum);
|
|
LispPTR rplaca(register LispPTR x, register LispPTR y);
|
|
LispPTR rplacd(LispPTR x, register LispPTR y);
|
|
LispPTR N_OP_car(register LispPTR tos);
|
|
LispPTR N_OP_cdr(register LispPTR tos);
|
|
LispPTR N_OP_rplaca(register LispPTR tosm1, register LispPTR tos);
|
|
LispPTR N_OP_rplacd(register LispPTR tosm1, register LispPTR tos);
|
|
ConsCell *find_close_prior_cell(struct conspage *page, LispPTR oldcell);
|
|
#endif
|