Commit b81b44f6 authored by Phil Krylov's avatar Phil Krylov Committed by Alexandre Julliard

ntdll: Fix building on Darwin versions prior to 8.0.

parent 3acc6242
......@@ -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"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment