| 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/math.h b/include/msvcrt/math.h index 81a51a6..4192378 100644 --- a/include/msvcrt/math.h +++ b/include/msvcrt/math.h
@@ -12,6 +12,8 @@ #define __WINE_USE_MSVCRT #endif +#include <pshpack8.h> + #ifdef __cplusplus extern "C" { #endif @@ -94,4 +96,6 @@ } #endif +#include <poppack.h> + #endif /* __WINE_MATH_H */