aboutsummaryrefslogtreecommitdiff
path: root/hash.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1996-02-07 12:13:17 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1996-02-07 12:13:17 -0200
commit995a9f71885fc1979a9a23edc3c34e19b36e7653 (patch)
tree9fcf09085f4fc5f68a68118c4002b059c0a4e61d /hash.h
parenta0ef046ef16e6bbf99fbbe594638593089253483 (diff)
downloadlua-995a9f71885fc1979a9a23edc3c34e19b36e7653.tar.gz
lua-995a9f71885fc1979a9a23edc3c34e19b36e7653.tar.bz2
lua-995a9f71885fc1979a9a23edc3c34e19b36e7653.zip
no more "Bool" type
Diffstat (limited to 'hash.h')
-rw-r--r--hash.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/hash.h b/hash.h
index e594a9cd..8ef6ddf1 100644
--- a/hash.h
+++ b/hash.h
@@ -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
29Bool lua_equalObj (Object *t1, Object *t2); 29int lua_equalObj (Object *t1, Object *t2);
30Hash *lua_createarray (Word nhash); 30Hash *lua_createarray (Word nhash);
31void lua_hashmark (Hash *h); 31void lua_hashmark (Hash *h);
32Long lua_hashcollector (void); 32Long lua_hashcollector (void);