summaryrefslogtreecommitdiff
path: root/llimits.h
diff options
context:
space:
mode:
Diffstat (limited to 'llimits.h')
-rw-r--r--llimits.h10
1 files changed, 2 insertions, 8 deletions
diff --git a/llimits.h b/llimits.h
index 3a56d97e..8c0c1b48 100644
--- a/llimits.h
+++ b/llimits.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: llimits.h,v 1.16 2000/10/03 14:03:21 roberto Exp roberto $ 2** $Id: llimits.h,v 1.17 2000/10/06 19:28:38 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*/
@@ -104,7 +104,7 @@ typedef unsigned long Instruction;
104/* 104/*
105** limits for opcode arguments. 105** limits for opcode arguments.
106** we use (signed) int to manipulate most arguments, 106** we use (signed) int to manipulate most arguments,
107** so they must fit in BITS_INT-1 bits (-1 for signal) 107** so they must fit in BITS_INT-1 bits (-1 for sign)
108*/ 108*/
109#if SIZE_U < BITS_INT-1 109#if SIZE_U < BITS_INT-1
110#define MAXARG_U ((1<<SIZE_U)-1) 110#define MAXARG_U ((1<<SIZE_U)-1)
@@ -196,10 +196,4 @@ typedef unsigned long Instruction;
196#endif 196#endif
197 197
198 198
199/* maximum part of a file name kept for error messages */
200#ifndef MAXFILENAME
201#define MAXFILENAME 260
202#endif
203
204
205#endif 199#endif