1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-03-04 18:34:14 +00:00

Remove unused struct lbits / LBITS. (#458)

This commit is contained in:
Bruce Mitchener
2023-02-27 02:31:44 +07:00
committed by GitHub
parent 38147abef9
commit 97bf4961ba

View File

@@ -142,12 +142,6 @@ typedef struct wbits {
unsigned LSB : 1;
} WBITS;
typedef struct lbits {
unsigned xMSB : 1;
unsigned MIDDLE : 30;
unsigned LSB : 1;
} LBITS;
#define PUTBASEBIT68K(base68k, offset, bitvalue) \
do { \
if (bitvalue) \
@@ -291,12 +285,6 @@ typedef struct wbits {
USHORT xMSB : 1;
} WBITS;
typedef struct lbits {
unsigned LSB : 1;
unsigned MIDDLE : 30;
unsigned xMSB : 1; /* xMSB b/c HPUX defined MSB in a header */
} LBITS;
#define PUTBASEBIT68K(base68k, offset, bitvalue) \
do { \
UNSIGNED real68kbase; \