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
|
#define MT_ST_BLKSIZE_MASK 0xffffff
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/* Darwin 7.9.0 has MTSETBSIZ instead of MTSETBLK */
|
||||||
|
#if !defined(MTSETBLK) && defined(MTSETBSIZ)
|
||||||
|
#define MTSETBLK MTSETBSIZ
|
||||||
|
#endif
|
||||||
|
|
||||||
#define NONAMELESSUNION
|
#define NONAMELESSUNION
|
||||||
#define NONAMELESSSTRUCT
|
#define NONAMELESSSTRUCT
|
||||||
#include "ntstatus.h"
|
#include "ntstatus.h"
|
||||||
|
|
Loading…
Reference in New Issue