diff options
Diffstat (limited to 'llimits.h')
-rw-r--r-- | llimits.h | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: llimits.h,v 1.17 2000/10/06 19:28:38 roberto Exp roberto $ | 2 | ** $Id: llimits.h,v 1.18 2000/10/09 13:47:32 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 | */ |
@@ -76,6 +76,11 @@ typedef unsigned long lint32; /* unsigned int with at least 32 bits */ | |||
76 | 76 | ||
77 | 77 | ||
78 | 78 | ||
79 | /* type to ensure maximum alignment */ | ||
80 | union L_Umaxalign { double d; char *s; long l; }; | ||
81 | |||
82 | |||
83 | |||
79 | /* | 84 | /* |
80 | ** type for virtual-machine instructions | 85 | ** type for virtual-machine instructions |
81 | ** must be an unsigned with (at least) 4 bytes (see details in lopcodes.h) | 86 | ** must be an unsigned with (at least) 4 bytes (see details in lopcodes.h) |