mirror of
https://github.com/devkitPro/wut.git
synced 2026-03-22 01:44:41 -05:00
Some checks failed
C/C++ CI / ubuntu-latest (push) Has been cancelled
`find . -regex '.*\.\(cpp\|hpp\|cu\|cuh\|c\|h\)' -exec clang-format -style=file -i {} \;`
19 lines
226 B
C
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
|