ntdll: Take into account that FreeBSD and others have MTSETBSIZ
instead of MTSETBLK.
This commit is contained in:
parent
44b335a9e0
commit
ba9ec9e233
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue