ntdll: Fix building on Darwin versions prior to 8.0.
This commit is contained in:
parent
3acc624219
commit
b81b44f615
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue