1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-04-13 23:23:57 +00:00

Correct procedure declarations since N_OP_xxx function args are all LispPTRs

This commit is contained in:
Nick Briggs
2022-08-15 16:18:37 -07:00
parent 873d4927ce
commit 58f6f68c7e
2 changed files with 11 additions and 11 deletions

View File

@@ -1,9 +1,9 @@
#ifndef SHIFTDEFS_H
#define SHIFTDEFS_H 1
#include "lispemul.h" /* for LispPTR */
LispPTR N_OP_llsh1(int a);
LispPTR N_OP_llsh8(int a);
LispPTR N_OP_lrsh1(int a);
LispPTR N_OP_lrsh8(int a);
LispPTR N_OP_lsh(int a, int b);
LispPTR N_OP_llsh1(LispPTR a);
LispPTR N_OP_llsh8(LispPTR a);
LispPTR N_OP_lrsh1(LispPTR a);
LispPTR N_OP_lrsh8(LispPTR a);
LispPTR N_OP_lsh(LispPTR a, LispPTR b);
#endif