From 35e461c66e06eb0e29ba1fcc740fba153931c677 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Grubbstr=C3=B6m=20=28Grubba=29?= <grubba@grubba.org> Date: Wed, 16 Jan 2008 00:39:26 +0100 Subject: [PATCH] Added some more prototypes for functions in language.yacc. Rev: src/las.h:1.77 --- src/las.h | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/las.h b/src/las.h index 797d84d235..d7c687f93c 100644 --- a/src/las.h +++ b/src/las.h @@ -2,7 +2,7 @@ || This file is part of Pike. For copyright information see COPYRIGHT. || Pike is distributed under GPL, LGPL and MPL. See the file COPYING || for more information. -|| $Id: las.h,v 1.76 2008/01/03 15:53:34 grubba Exp $ +|| $Id: las.h,v 1.77 2008/01/15 23:39:26 grubba Exp $ */ #ifndef LAS_H @@ -26,6 +26,13 @@ void low_yyerror(struct pike_string *str); PMOD_EXPORT void yyerror(const char *s); static void yyerror_reserved(const char *keyword); int islocal(struct pike_string *str); +int low_add_local_name(struct compiler_frame *frame, + struct pike_string *str, + struct pike_type *type, + node *def); +int add_local_name(struct pike_string *str, + struct pike_type *type, + node *def); int verify_declared(struct pike_string *str); void cleanup_compiler(void); -- GitLab