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 */