1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-02-14 19:56:28 +00:00

Remove unused macro IDiff and associated SNum struct definition.

This commit is contained in:
Nick Briggs
2023-01-16 18:41:45 -08:00
parent 53fe052432
commit f7542df4e7

View File

@@ -143,23 +143,6 @@ LispPTR *CURRENTCURSOR68k;
extern DLword *EmCursorX68K;
extern DLword *EmCursorY68K;
#ifndef BYTESWAP
typedef struct {
unsigned nil : 8;
unsigned type : 8;
unsigned num : 16;
} SNum;
#else
typedef struct {
unsigned num : 16;
unsigned type : 8;
unsigned nil : 8;
} SNum;
#endif /* BYTESWAP */
#define IDiff(x68k, y68k) (((SNum *)(x68k))->num - ((SNum *)(y68k))->num)
/* EmXXXX68K are already swapped, no need for GETWORD */