diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1996-02-07 12:13:17 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1996-02-07 12:13:17 -0200 |
commit | 995a9f71885fc1979a9a23edc3c34e19b36e7653 (patch) | |
tree | 9fcf09085f4fc5f68a68118c4002b059c0a4e61d /hash.h | |
parent | a0ef046ef16e6bbf99fbbe594638593089253483 (diff) | |
download | lua-995a9f71885fc1979a9a23edc3c34e19b36e7653.tar.gz lua-995a9f71885fc1979a9a23edc3c34e19b36e7653.tar.bz2 lua-995a9f71885fc1979a9a23edc3c34e19b36e7653.zip |
no more "Bool" type
Diffstat (limited to 'hash.h')
-rw-r--r-- | hash.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2,7 +2,7 @@ | |||
2 | ** hash.h | 2 | ** hash.h |
3 | ** hash manager for lua | 3 | ** hash manager for lua |
4 | ** Luiz Henrique de Figueiredo - 17 Aug 90 | 4 | ** Luiz Henrique de Figueiredo - 17 Aug 90 |
5 | ** $Id: hash.h,v 2.7 1994/12/20 21:20:36 roberto Exp roberto $ | 5 | ** $Id: hash.h,v 2.8 1995/01/12 14:19:04 roberto Exp roberto $ |
6 | */ | 6 | */ |
7 | 7 | ||
8 | #ifndef hash_h | 8 | #ifndef hash_h |
@@ -26,7 +26,7 @@ typedef struct Hash | |||
26 | } Hash; | 26 | } Hash; |
27 | 27 | ||
28 | 28 | ||
29 | Bool lua_equalObj (Object *t1, Object *t2); | 29 | int lua_equalObj (Object *t1, Object *t2); |
30 | Hash *lua_createarray (Word nhash); | 30 | Hash *lua_createarray (Word nhash); |
31 | void lua_hashmark (Hash *h); | 31 | void lua_hashmark (Hash *h); |
32 | Long lua_hashcollector (void); | 32 | Long lua_hashcollector (void); |