diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1994-11-16 14:03:48 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1994-11-16 14:03:48 -0200 |
commit | 94686ce58554a80374eeff115ee5b87c184ed173 (patch) | |
tree | 9b41f32a05a41f7063df180015c13c5d9ae1d4a0 /tree.h | |
parent | 86b35cf4f6a824880239069d0afe282e95806aaa (diff) | |
download | lua-94686ce58554a80374eeff115ee5b87c184ed173.tar.gz lua-94686ce58554a80374eeff115ee5b87c184ed173.tar.bz2 lua-94686ce58554a80374eeff115ee5b87c184ed173.zip |
correction of function 'nextvar'
Diffstat (limited to 'tree.h')
-rw-r--r-- | tree.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,7 +1,7 @@ | |||
1 | /* | 1 | /* |
2 | ** tree.h | 2 | ** tree.h |
3 | ** TecCGraf - PUC-Rio | 3 | ** TecCGraf - PUC-Rio |
4 | ** $Id: tree.h,v 1.1 1994/07/19 21:24:17 celes Exp roberto $ | 4 | ** $Id: tree.h,v 1.2 1994/11/14 21:40:14 roberto Exp roberto $ |
5 | */ | 5 | */ |
6 | 6 | ||
7 | #ifndef tree_h | 7 | #ifndef tree_h |
@@ -31,6 +31,6 @@ typedef struct TreeNode | |||
31 | char *lua_strcreate (char *str); | 31 | char *lua_strcreate (char *str); |
32 | TreeNode *lua_constcreate (char *str); | 32 | TreeNode *lua_constcreate (char *str); |
33 | void lua_strcollector (void); | 33 | void lua_strcollector (void); |
34 | char *lua_varnext (char *n); | 34 | TreeNode *lua_varnext (char *n); |
35 | 35 | ||
36 | #endif | 36 | #endif |