wut/include/sys/ioctl.h
GaryOderNichts 2c98cc91aa
Some checks failed
C/C++ CI / ubuntu-latest (push) Has been cancelled
Run clang-format
`find . -regex '.*\.\(cpp\|hpp\|cu\|cuh\|c\|h\)' -exec clang-format -style=file -i {} \;`
2025-06-05 11:06:04 +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