summaryrefslogtreecommitdiff
path: root/llimits.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2003-02-20 17:12:39 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2003-02-20 17:12:39 -0300
commit67f9a2a98f245f3468f1671bb1f51ffabb4581be (patch)
treefa3453c1c6f8fe00f6c327e277a02ea72ebb8138 /llimits.h
parentc4f9c887fc8dc514b9de30ce395517caad973246 (diff)
downloadlua-67f9a2a98f245f3468f1671bb1f51ffabb4581be.tar.gz
lua-67f9a2a98f245f3468f1671bb1f51ffabb4581be.tar.bz2
lua-67f9a2a98f245f3468f1671bb1f51ffabb4581be.zip
details
Diffstat (limited to 'llimits.h')
-rw-r--r--llimits.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/llimits.h b/llimits.h
index c2fb9589..e5d0a7f0 100644
--- a/llimits.h
+++ b/llimits.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: llimits.h,v 1.50 2002/11/22 18:01:46 roberto Exp roberto $ 2** $Id: llimits.h,v 1.51 2002/11/25 17:47:13 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*/
@@ -49,6 +49,9 @@ typedef int ls_hash;
49/* it should be at least as large as size_t */ 49/* it should be at least as large as size_t */
50typedef unsigned long lu_mem; 50typedef unsigned long lu_mem;
51 51
52#define MAX_LUMEM ULONG_MAX
53
54
52/* an integer big enough to count the number of strings in use */ 55/* an integer big enough to count the number of strings in use */
53typedef long ls_nstr; 56typedef long ls_nstr;
54 57