From 97bf4961bac4505e40d87dd7530b297ae0758e7c Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Mon, 27 Feb 2023 02:31:44 +0700 Subject: [PATCH] Remove unused `struct lbits` / `LBITS`. (#458) --- inc/lispemul.h | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/inc/lispemul.h b/inc/lispemul.h index dd05704..c74569f 100644 --- a/inc/lispemul.h +++ b/inc/lispemul.h @@ -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; \