mirror of
https://github.com/Interlisp/maiko.git
synced 2026-01-11 23:43:19 +00:00
10 lines
340 B
C
10 lines
340 B
C
#ifndef MVSDEFS_H
|
|
#define MVSDEFS_H 1
|
|
#include "lispemul.h" /* for LispPTR */
|
|
#include "stack.h" /* for FX2 */
|
|
LispPTR make_value_list(int argcount, LispPTR *argarray);
|
|
void simulate_unbind(FX2 *frame, int unbind_count, FX2 *returner);
|
|
LispPTR values(int arg_count, LispPTR *args);
|
|
LispPTR values_list(int arg_count, LispPTR *args);
|
|
#endif
|