aboutsummaryrefslogtreecommitdiff
path: root/lstate.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2003-04-28 16:26:16 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2003-04-28 16:26:16 -0300
commit572a69df78b2636642e9c520ebc8c1d2efa16afe (patch)
tree0e1e6f042e63f1d0e8aabc692692f2fcc42efb75 /lstate.h
parent943c82b37622bd2321d4fbb361d99f4495ceed2f (diff)
downloadlua-572a69df78b2636642e9c520ebc8c1d2efa16afe.tar.gz
lua-572a69df78b2636642e9c520ebc8c1d2efa16afe.tar.bz2
lua-572a69df78b2636642e9c520ebc8c1d2efa16afe.zip
Lua does not need all those different types...
Diffstat (limited to 'lstate.h')
-rw-r--r--lstate.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lstate.h b/lstate.h
index 6f8e4e6c..37de2372 100644
--- a/lstate.h
+++ b/lstate.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lstate.h,v 1.108 2002/11/25 17:47:13 roberto Exp roberto $ 2** $Id: lstate.h,v 1.109 2003/02/27 11:52:30 roberto Exp roberto $
3** Global State 3** Global State
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -64,7 +64,7 @@ struct lua_longjmp; /* defined in ldo.c */
64 64
65typedef struct stringtable { 65typedef struct stringtable {
66 GCObject **hash; 66 GCObject **hash;
67 ls_nstr nuse; /* number of elements */ 67 lu_int32 nuse; /* number of elements */
68 int size; 68 int size;
69} stringtable; 69} stringtable;
70 70