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

Correct parameter type declaration error for N_OP_ubfloat1

Ensure pointers have appropriate alignment for data being referenced
This commit is contained in:
Nick Briggs
2023-01-08 22:11:05 -08:00
parent c10d339036
commit 96fcc9475a
2 changed files with 6 additions and 6 deletions

View File

@@ -1,5 +1,5 @@
#ifndef UBF1DEFS_H
#define UBF1DEFS_H 1
#include "lispemul.h" /* for LispPTR */
LispPTR N_OP_ubfloat1(int arg, int alpha);
LispPTR N_OP_ubfloat1(LispPTR arg, int alpha);
#endif