mirror of
https://github.com/ziglang/zig.git
synced 2024-12-04 19:09:32 +00:00
49d1a4c562
also start prefering NtDll API. so far: * NtQueryInformationFile * NtClose adds a performance workaround for windows unicode conversion. but that should probably be removed before merging
14 lines
301 B
C
Vendored
14 lines
301 B
C
Vendored
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
|
|
#ifndef _ASM_POWERPC_IOCTL_H
|
|
#define _ASM_POWERPC_IOCTL_H
|
|
|
|
#define _IOC_SIZEBITS 13
|
|
#define _IOC_DIRBITS 3
|
|
|
|
#define _IOC_NONE 1U
|
|
#define _IOC_READ 2U
|
|
#define _IOC_WRITE 4U
|
|
|
|
#include <asm-generic/ioctl.h>
|
|
|
|
#endif /* _ASM_POWERPC_IOCTL_H */ |