commit | 2af96fe590a6e2996c87b760c53f332356cbc4ba | [log] [tgz] |
---|---|---|
author | Dmitry Timoshkov <dmitry@codeweavers.com> | Tue Feb 20 16:35:41 2007 +0800 |
committer | Alexandre Julliard <julliard@winehq.org> | Tue Feb 20 12:24:04 2007 +0100 |
tree | 079cc87e9f87c8f4593611e62242700e8421c71a | |
parent | 14478b8ba2913747971b5bb8634aa044fa8af0f6 [diff] [blame] |
msvcrt: Pack the structures on a 8-byte boundary like in PSDK.
diff --git a/include/msvcrt/stdlib.h b/include/msvcrt/stdlib.h index a8b6ab5..27e8dbe 100644 --- a/include/msvcrt/stdlib.h +++ b/include/msvcrt/stdlib.h
@@ -11,6 +11,8 @@ #define __WINE_USE_MSVCRT #endif +#include <pshpack8.h> + #ifndef NULL #ifdef __cplusplus #define NULL 0 @@ -246,4 +248,6 @@ #define ldiv(num,denom) __wine_msvcrt_ldiv(num,denom) #endif +#include <poppack.h> + #endif /* __WINE_STDLIB_H */