mirror of
https://github.com/Interlisp/maiko.git
synced 2026-01-16 16:19:10 +00:00
... start by fixing the include files and the fallout in C source from removing includes not directly needed by headers that previously included them.
16 lines
552 B
C
16 lines
552 B
C
#ifndef ARITH2DEFS_H
|
|
#define ARITH2DEFS_H 1
|
|
#include "lispemul.h" /* for LispPTR */
|
|
LispPTR N_OP_plus2(int tosm1, int tos);
|
|
LispPTR N_OP_iplus2(int tosm1, int tos);
|
|
LispPTR N_OP_difference(int tosm1, int tos);
|
|
LispPTR N_OP_idifference(int tosm1, int tos);
|
|
LispPTR N_OP_logxor(int tosm1, int tos);
|
|
LispPTR N_OP_logand(int tosm1, int tos);
|
|
LispPTR N_OP_logor(int tosm1, int tos);
|
|
LispPTR N_OP_greaterp(int tosm1, int tos);
|
|
LispPTR N_OP_igreaterp(int tosm1, int tos);
|
|
LispPTR N_OP_iplusn(int tos, int n);
|
|
LispPTR N_OP_idifferencen(int tos, int n);
|
|
#endif
|