Commit ba9ec9e2 authored by Gerald Pfeifer's avatar Gerald Pfeifer Committed by Alexandre Julliard

ntdll: Take into account that FreeBSD and others have MTSETBSIZ

instead of MTSETBLK.
parent 44b335a9
......@@ -30,10 +30,12 @@
#include <sys/mtio.h>
#endif
/* FreeBSD, for example, has MTCOMP instead of MTCOMPRESSION. */
#if !defined(MTCOMPRESSION) && defined(MTCOMP)
#define MTCOMPRESSION MTCOMP
#endif
#if !defined(MTSETBLK) && defined(MTSETBSIZ)
#define MTSETBLK MTSETBSIZ
#endif
#define NONAMELESSUNION
#define NONAMELESSSTRUCT
......
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