mirror of
https://github.com/devkitPro/wut.git
synced 2026-04-16 06:26:42 -05:00
18 lines
240 B
C
18 lines
240 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
|