More boolification.

Constants and formals have been converted, but not globals yet.
This commit is contained in:
Eric S. Raymond 2017-05-18 17:28:18 -04:00
parent 23f2dbe814
commit 17ad4891ee
4 changed files with 42 additions and 53 deletions

View file

@ -3,9 +3,6 @@
#include "main.h"
#include "share.h"
#define TRUE (0==0)
#define FALSE (0!=0)
/*
* SCORING AND WRAP-UP
*/
@ -115,6 +112,6 @@ L20210: SPEAK(CTEXT[I]);
SETPRM(1,I,I);
SPK=263;
L25000: RSPEAK(SPK);
exit(FALSE);
exit(0);
}