mirror of
https://github.com/Interlisp/maiko.git
synced 2026-01-14 07:30:21 +00:00
12 lines
432 B
C
12 lines
432 B
C
#ifndef FVARDEFS_H
|
|
#define FVARDEFS_H 1
|
|
#include "lispemul.h" /* for LispPTR, DLword */
|
|
#include "stack.h" /* for fnhead, frameex1 */
|
|
LispPTR N_OP_fvarn(int n);
|
|
LispPTR N_OP_stkscan(LispPTR tos);
|
|
LispPTR N_OP_fvar_(LispPTR tos, int n);
|
|
void nnewframe(struct frameex1 *newpfra2, DLword *achain, int name);
|
|
void nfvlookup(struct frameex1 *apframe1, DLword *achain, struct fnhead *apfnhead1);
|
|
LispPTR native_newframe(int slot);
|
|
#endif
|