NULL is ANSI; spacing.

This commit is contained in:
William McBrine
2018-12-29 14:32:55 -05:00
parent 9b0616d5e5
commit 4f716249ac

View File

@@ -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)