mirror of
https://github.com/Interlisp/maiko.git
synced 2026-02-10 10:10:21 +00:00
Correct parameter declarations for N_OP_cons (int => LispPTR)
This commit is contained in:
@@ -2,6 +2,6 @@
|
||||
#define CONSPAGEDEFS_H 1
|
||||
#include "lispemul.h" /* for LispPTR */
|
||||
struct conspage *next_conspage(void);
|
||||
LispPTR N_OP_cons(int cons_car, int cons_cdr);
|
||||
LispPTR N_OP_cons(LispPTR cons_car, LispPTR cons_cdr);
|
||||
LispPTR cons(LispPTR cons_car, LispPTR cons_cdr);
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user