mirror of
https://github.com/Interlisp/maiko.git
synced 2026-01-11 23:43:19 +00:00
Correct procedure declarations since N_OP_xxx function args are all LispPTRs
Replace my.h defn of IsNumber() with Numberp() defn in lsptypes.h
9 lines
277 B
C
9 lines
277 B
C
#ifndef EQFDEFS_H
|
|
#define EQFDEFS_H 1
|
|
#include "lispemul.h" /* for LispPTR */
|
|
LispPTR N_OP_clequal(LispPTR arg1, LispPTR arg2);
|
|
LispPTR N_OP_eqlop(LispPTR arg1, LispPTR arg2);
|
|
LispPTR N_OP_equal(LispPTR arg1, LispPTR arg2);
|
|
LispPTR N_OP_eqq(LispPTR arg1, LispPTR arg2);
|
|
#endif
|