From 4f716249acc60ef0c7a6e62a0698ceefaf09e2a9 Mon Sep 17 00:00:00 2001 From: William McBrine Date: Sat, 29 Dec 2018 14:32:55 -0500 Subject: [PATCH] NULL is ANSI; spacing. --- curses.h | 9 --------- 1 file changed, 9 deletions(-) diff --git a/curses.h b/curses.h index 0444d00e..33272f6b 100644 --- a/curses.h +++ b/curses.h @@ -65,24 +65,15 @@ extern "C" #undef FALSE #undef TRUE - #ifdef __bool_true_false_are_defined - # define FALSE false # define TRUE true - #else - typedef unsigned char bool; - # define FALSE 0 # define TRUE 1 - #endif -#undef NULL -#define NULL (void *)0 - #undef ERR #define ERR (-1)