From 688eb60df4b2dc59908eccf386e28f8532c82259 Mon Sep 17 00:00:00 2001 From: Michael Brown Date: Mon, 18 Dec 2006 16:48:09 +0000 Subject: [PATCH] Use int rather than short for bool; it will give more efficient code. --- src/include/curses.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/include/curses.h b/src/include/curses.h index 86825be4..d3566584 100644 --- a/src/include/curses.h +++ b/src/include/curses.h @@ -22,7 +22,7 @@ #undef TRUE #define TRUE (1) -typedef short bool; +typedef int bool; typedef uint32_t chtype; typedef uint32_t attr_t;