mirror of
https://github.com/Interlisp/maiko.git
synced 2026-01-26 20:02:37 +00:00
Remove unnecessary (re)definitions of TRUE/FALSE (#356)
This commit is contained in:
@@ -243,9 +243,6 @@ extern int maxpages;
|
||||
extern int *Lisp_errno;
|
||||
extern int Dummy_errno; /* If errno cell is not provided by Lisp, dummy_errno is used. */
|
||||
|
||||
#define FALSE 0
|
||||
#define TRUE !FALSE
|
||||
|
||||
char sysout_name[MAXPATHLEN]; /* Set by read_Xoption, in the X version. */
|
||||
int sysout_size = 0; /* ditto */
|
||||
|
||||
|
||||
@@ -26,11 +26,6 @@
|
||||
#include "adr68k.h"
|
||||
#include "cell.h"
|
||||
|
||||
#ifndef FALSE
|
||||
#define FALSE 0
|
||||
#define TRUE !FALSE
|
||||
#endif /* FALSE */
|
||||
|
||||
extern XEvent report;
|
||||
|
||||
extern DLword *CTopMNWEvent;
|
||||
|
||||
@@ -23,9 +23,6 @@
|
||||
#include "adr68k.h"
|
||||
#include "lspglob.h"
|
||||
|
||||
#define FALSE 0
|
||||
#define TRUE !FALSE
|
||||
|
||||
#include "picture.h"
|
||||
|
||||
#define min(x, y) (((x) > (y)) ? (y) : (x))
|
||||
|
||||
@@ -88,8 +88,6 @@ extern DspInterface currentdsp;
|
||||
int TIMEOUT_TIME; /* For file system timeout */
|
||||
|
||||
#ifdef XWINDOW
|
||||
#define FALSE 0
|
||||
#define TRUE !FALSE
|
||||
volatile sig_atomic_t Event_Req = FALSE;
|
||||
#endif /* XWINDOW */
|
||||
|
||||
|
||||
@@ -24,9 +24,6 @@
|
||||
|
||||
#include "picture.h"
|
||||
|
||||
#define FALSE 0
|
||||
#define TRUE !FALSE
|
||||
|
||||
#define COLOR_INIT 0
|
||||
#define COLOR_OVERLAYREGION 1
|
||||
#define COLOR_VIDEOREGION 2
|
||||
|
||||
Reference in New Issue
Block a user