wut/include/sys/ioctl.h
GaryOderNichts c237a8d29d
Run clang-format
`find . -regex '.*\.\(cpp\|hpp\|cu\|cuh\|c\|h\)' -exec clang-format -style=file -i {} \;`
2025-06-05 10:46:21 +01:00

19 lines
226 B
C

#pragma once
#define FIONBIO (0x8004667E)
#define FIONREAD (0x4004667F)
#define FIONWRITE (0x40046677)
#ifdef __cplusplus
extern "C" {
#endif
int
ioctl(int fd,
int request,
...);
#ifdef __cplusplus
}
#endif