1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-02-04 07:33:07 +00:00

Remove unnecessary (re)definitions of TRUE/FALSE (#356)

This commit is contained in:
Nick Briggs
2021-02-14 16:47:04 -08:00
committed by GitHub
parent c60b522012
commit 1043a80d1f
7 changed files with 0 additions and 30 deletions

View File

@@ -285,14 +285,6 @@ typedef struct
#define mid(a, b, c) max( min( b, max( a, c ), min( a, max( b, c ))))
#endif /* mid */
#ifndef FALSE
#define FALSE 0
#endif /* FALSE */
#ifndef TRUE
#define TRUE !FALSE
#endif /* TRUE */
#define MINKEYEVENT 2 /* leave 2 words for read,write offsets */
#define NUMBEROFKEYEVENTS 383

View File

@@ -31,10 +31,4 @@ typedef struct {
int device_locked;
#endif /* DOS */
} KbdInterfaceRec, *KbdInterface;
#ifndef TRUE
#define FALSE 0
#define TRUE !FALSE
#endif /* TRUE */
#endif /* KBDIF_H */