aboutsummaryrefslogtreecommitdiff
path: root/llimits.h
diff options
context:
space:
mode:
Diffstat (limited to 'llimits.h')
-rw-r--r--llimits.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/llimits.h b/llimits.h
index 06421ead..df5d6fff 100644
--- a/llimits.h
+++ b/llimits.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: llimits.h,v 1.4 2000/03/31 16:28:45 roberto Exp roberto $ 2** $Id: llimits.h,v 1.5 2000/04/04 20:48:44 roberto Exp roberto $
3** Limits, basic types, and some other "instalation-dependent" definitions 3** Limits, basic types, and some other "instalation-dependent" definitions
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -29,7 +29,7 @@ typedef LUA_NUM_TYPE Number;
29** conversion of pointer to int (for hashing only) 29** conversion of pointer to int (for hashing only)
30** (the shift removes bits that are usually 0 because of alignment) 30** (the shift removes bits that are usually 0 because of alignment)
31*/ 31*/
32#define IntPoint(L, p) (((unsigned long)(p)) >> 3) 32#define IntPoint(p) (((unsigned long)(p)) >> 3)
33 33
34 34
35/* 35/*