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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user