mirror of
https://github.com/Interlisp/maiko.git
synced 2026-01-26 11:52:25 +00:00
Remove USHORT definition and replace uses with DLword
USHORT unnecessarily duplicates the DLword type that represents a single Lisp 16-bit word.
This commit is contained in:
@@ -270,9 +270,9 @@ typedef struct basic_frame {
|
||||
} Bframe;
|
||||
|
||||
typedef struct stkword {
|
||||
USHORT usecount : 8;
|
||||
USHORT nil : 5;
|
||||
USHORT flags : 3;
|
||||
DLword usecount : 8;
|
||||
DLword nil : 5;
|
||||
DLword flags : 3;
|
||||
} StackWord;
|
||||
|
||||
typedef struct stack_block {
|
||||
|
||||
Reference in New Issue
Block a user