diff options
| -rw-r--r-- | llimits.h | 7 |
1 files changed, 5 insertions, 2 deletions
| @@ -1,5 +1,5 @@ | |||
| 1 | /* | 1 | /* |
| 2 | ** $Id: llimits.h,v 1.28 2001/03/26 14:31:49 roberto Exp roberto $ | 2 | ** $Id: llimits.h,v 1.29 2001/06/05 18:17:01 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 | */ |
| @@ -82,7 +82,10 @@ typedef unsigned char lu_byte; | |||
| 82 | 82 | ||
| 83 | 83 | ||
| 84 | /* type to ensure maximum alignment */ | 84 | /* type to ensure maximum alignment */ |
| 85 | union L_Umaxalign { double d; void *s; long l; }; | 85 | #ifndef LUSER_ALIGNMENT_T |
| 86 | #define LUSER_ALIGNMENT_T double | ||
| 87 | #endif | ||
| 88 | union L_Umaxalign { LUSER_ALIGNMENT_T u; void *s; long l; }; | ||
| 86 | 89 | ||
| 87 | 90 | ||
| 88 | 91 | ||
