diff options
| author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-04-26 10:43:25 -0300 |
|---|---|---|
| committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-04-26 10:43:25 -0300 |
| commit | 66d620674c3fbc0305e43a08cfd2abd990847c8c (patch) | |
| tree | 6ee84ea2ec4b55001e2c4cfa32790a07637cf1d2 | |
| parent | 84790bb953a091eed06d260ef58e71987dda3dab (diff) | |
| download | lua-66d620674c3fbc0305e43a08cfd2abd990847c8c.tar.gz lua-66d620674c3fbc0305e43a08cfd2abd990847c8c.tar.bz2 lua-66d620674c3fbc0305e43a08cfd2abd990847c8c.zip | |
IntPoint does not need L
Diffstat (limited to '')
| -rw-r--r-- | llimits.h | 4 |
1 files changed, 2 insertions, 2 deletions
| @@ -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 | /* |
