mirror of
https://github.com/Interlisp/maiko.git
synced 2026-01-13 15:18:14 +00:00
8 lines
284 B
C
8 lines
284 B
C
#ifndef BINDSDEFS_H
|
|
#define BINDSDEFS_H 1
|
|
#include "lispemul.h" /* for LispPTR */
|
|
LispPTR *N_OP_bind(LispPTR *stack_pointer, LispPTR tos, unsigned byte1, unsigned byte2);
|
|
LispPTR *N_OP_unbind(LispPTR *stack_pointer);
|
|
LispPTR *N_OP_dunbind(LispPTR *stack_pointer, LispPTR tos);
|
|
#endif
|