mirror of
https://github.com/Interlisp/maiko.git
synced 2026-02-04 07:33:07 +00:00
9 lines
247 B
C
9 lines
247 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(LispPTR tos);
|
|
LispPTR N_OP_assoc(LispPTR key, LispPTR list);
|
|
#endif
|