ntdll: Fix building on Darwin versions prior to 8.0.

This commit is contained in:
Phil Krylov 2006-11-06 00:53:54 +03:00 committed by Alexandre Julliard
parent 3acc624219
commit b81b44f615
1 changed files with 5 additions and 0 deletions

View File

@ -43,6 +43,11 @@
#define MT_ST_BLKSIZE_MASK 0xffffff
#endif
/* Darwin 7.9.0 has MTSETBSIZ instead of MTSETBLK */
#if !defined(MTSETBLK) && defined(MTSETBSIZ)
#define MTSETBLK MTSETBSIZ
#endif
#define NONAMELESSUNION
#define NONAMELESSSTRUCT
#include "ntstatus.h"