aboutsummaryrefslogtreecommitdiff
path: root/llimits.h
diff options
context:
space:
mode:
Diffstat (limited to 'llimits.h')
-rw-r--r--llimits.h11
1 files changed, 10 insertions, 1 deletions
diff --git a/llimits.h b/llimits.h
index c63b6853..ccffb3dc 100644
--- a/llimits.h
+++ b/llimits.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: llimits.h,v 1.65 2005/03/09 16:28:07 roberto Exp roberto $ 2** $Id: llimits.h,v 1.66 2005/08/04 13:37:10 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*/
@@ -103,4 +103,13 @@ typedef lu_int32 Instruction;
103#endif 103#endif
104 104
105 105
106/*
107** macro to control inclusion of some hard tests on stack reallocation
108*/
109#ifndef HARDSTACKTESTS
110#define condhardstacktests(x) ((void)0)
111#else
112#define condhardstacktests(x) x
113#endif
114
106#endif 115#endif