aboutsummaryrefslogtreecommitdiff
path: root/scope.h
diff options
context:
space:
mode:
Diffstat (limited to 'scope.h')
-rw-r--r--scope.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/scope.h b/scope.h
index 8a8cdb1..7160b5e 100644
--- a/scope.h
+++ b/scope.h
@@ -9,7 +9,7 @@ typedef struct hash {
char function_boundry;
} scope;
-scope* mkscope(scope*);
+scope* mkscope();
void free_scope(scope*);
/*stack routines*/
@@ -23,5 +23,5 @@ node* scope_search(scope*, char*);
node* scope_safe_search_all(scope*, char*);
/*hash function*/
-int hash_pwj(char*);
+int hashpjw(char*);
#endif