summaryrefslogtreecommitdiffhomepage
path: root/c.html.markdown
diff options
context:
space:
mode:
authorAdam Bard <github@adambard.com>2017-09-12 22:43:55 -0700
committerGitHub <noreply@github.com>2017-09-12 22:43:55 -0700
commit33d6dce8ba38070e5f1fe38112e0f17ed48f2192 (patch)
tree2c29c7f3d1a04668a5d7ef60f803a14e17c258b3 /c.html.markdown
parenta5c23e8af4be114ed5e04c1034acbc6ef4890719 (diff)
Update c.html.markdown
Fix presence of bool (Fixes #2854)
Diffstat (limited to 'c.html.markdown')
-rw-r--r--c.html.markdown2
1 files changed, 1 insertions, 1 deletions
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)