diff src/variables.h @ 1827:effa9400766f

[project @ 1996-02-02 14:07:51 by jwe]
author jwe
date Fri, 02 Feb 1996 14:10:10 +0000
parents 3a9462b655f1
children e62277bf5fe0
line wrap: on
line diff
--- a/src/variables.h
+++ b/src/variables.h
@@ -70,7 +70,7 @@
 
 extern void initialize_symbol_tables (void);
 
-extern int lookup (symbol_record *s, int exec_script = 1);
+extern bool lookup (symbol_record *s, int exec_script = 1);
 
 extern symbol_record *lookup_by_name (const string& nm, int exec_script = 1);
 
@@ -86,9 +86,9 @@
 
 extern void force_link_to_function (const string&);
 
-extern int is_builtin_variable (const string&);
-extern int is_text_function_name (const string&);
-extern int is_globally_visible (const string&);
+extern bool is_builtin_variable (const string&);
+extern bool is_text_function_name (const string&);
+extern bool is_globally_visible (const string&);
 
 extern tree_fvc *is_valid_function (const tree_constant&, const string&,
 				    int warn = 0);