summaryrefslogtreecommitdiff
path: root/symbol.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2012-05-11 15:05:35 +0300
committerArnold D. Robbins <arnold@skeeve.com>2012-05-11 15:05:35 +0300
commite5353c0f447a8628985722296f57fc02dd2e0063 (patch)
treee41c41ba69b3c707cad6f6dbd3f1f9374e1eeafd /symbol.c
parent4f8aff5908706e6f526b61337d10a412f4f66360 (diff)
downloadgawk-e5353c0f447a8628985722296f57fc02dd2e0063.tar.gz
Move to use of bool type, true, false, everywhere.
Diffstat (limited to 'symbol.c')
-rw-r--r--symbol.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/symbol.c b/symbol.c
index 57ca7be0..5d89bf07 100644
--- a/symbol.c
+++ b/symbol.c
@@ -360,7 +360,7 @@ get_symbols(SYMBOL_TYPE what, int sort)
NODE **
variable_list()
{
- return get_symbols(VARIABLE, TRUE);
+ return get_symbols(VARIABLE, true);
}
/* function_list --- list of functions */
@@ -616,7 +616,7 @@ in_main_context()
/* free_context --- free context structure and related data. */
void
-free_context(AWK_CONTEXT *ctxt, int keep_globals)
+free_context(AWK_CONTEXT *ctxt, bool keep_globals)
{
SRCFILE *s, *sn;