From 33d6dce8ba38070e5f1fe38112e0f17ed48f2192 Mon Sep 17 00:00:00 2001 From: Adam Bard Date: Tue, 12 Sep 2017 22:43:55 -0700 Subject: Update c.html.markdown Fix presence of bool (Fixes #2854) --- c.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'c.html.markdown') diff --git a/c.html.markdown b/c.html.markdown index c47a2df7..1ff8658c 100644 --- a/c.html.markdown +++ b/c.html.markdown @@ -333,7 +333,7 @@ int main (int argc, char** argv) using "goto" in C */ typedef enum { false, true } bool; - // for C don't have bool as data type :( + // for C don't have bool as data type before C99 :( bool disaster = false; int i, j; for(i=0;i<100;++i) -- cgit v1.2.3