From a550ea0a47374705a37f36b0f05ffe9e4c8161fb Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Tue, 13 Nov 2018 21:44:02 +0000 Subject: Replace TRUE/FALSE with C99 true/false throughout. This commit removes the old #defines of TRUE and FALSE from puzzles.h, and does a mechanical search-and-replace throughout the code to replace them with the C99 standard lowercase spellings. --- puzzles.h | 7 ------- 1 file changed, 7 deletions(-) (limited to 'puzzles.h') diff --git a/puzzles.h b/puzzles.h index 5d40e80..2e6218e 100644 --- a/puzzles.h +++ b/puzzles.h @@ -10,13 +10,6 @@ #include /* for UINT_MAX */ #include -#ifndef TRUE -#define TRUE 1 -#endif -#ifndef FALSE -#define FALSE 0 -#endif - #define PI 3.141592653589793238462643383279502884197169399 #define lenof(array) ( sizeof(array) / sizeof(*(array)) ) -- cgit v1.1