summaryrefslogtreecommitdiff
path: root/llimits.h
diff options
context:
space:
mode:
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