diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-11-25 15:47:13 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-11-25 15:47:13 -0200 |
commit | 5f698f8b6f7e5fb18e0a7386dc506b0d5b538e6b (patch) | |
tree | 30ae565e9ca884a66c3cca023d24950972e02b0b /llimits.h | |
parent | 9b1c586b2f5b86173bf0ceca8a0dd84510af9024 (diff) | |
download | lua-5f698f8b6f7e5fb18e0a7386dc506b0d5b538e6b.tar.gz lua-5f698f8b6f7e5fb18e0a7386dc506b0d5b538e6b.tar.bz2 lua-5f698f8b6f7e5fb18e0a7386dc506b0d5b538e6b.zip |
simpler interface to hooks + use of `int' to count hooks
Diffstat (limited to 'llimits.h')
-rw-r--r-- | llimits.h | 7 |
1 files changed, 1 insertions, 6 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: llimits.h,v 1.49 2002/11/22 17:16:52 roberto Exp roberto $ | 2 | ** $Id: llimits.h,v 1.50 2002/11/22 18:01:46 roberto Exp roberto $ |
3 | ** Limits, basic types, and some other `installation-dependent' definitions | 3 | ** Limits, basic types, and some other `installation-dependent' definitions |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -52,11 +52,6 @@ typedef unsigned long lu_mem; | |||
52 | /* an integer big enough to count the number of strings in use */ | 52 | /* an integer big enough to count the number of strings in use */ |
53 | typedef long ls_nstr; | 53 | typedef long ls_nstr; |
54 | 54 | ||
55 | /* an integer big enough to count the number of steps when calling a | ||
56 | ** `count' hook */ | ||
57 | typedef long ls_count; | ||
58 | |||
59 | |||
60 | /* chars used as small naturals (so that `char' is reserved for characters) */ | 55 | /* chars used as small naturals (so that `char' is reserved for characters) */ |
61 | typedef unsigned char lu_byte; | 56 | typedef unsigned char lu_byte; |
62 | 57 | ||