2020-05-31 18:54:54 +00:00
|
|
|
#include <io.h>
|
|
|
|
#define STDIN_FILENO 0
|
|
|
|
#define STDOUT_FILENO 1
|
|
|
|
#define STDERR_FILENO 2
|
|
|
|
|
|
|
|
#define read(...) _read(__VA_ARGS__)
|
|
|
|
#define write(...) _write(__VA_ARGS__)
|
2021-09-08 21:13:09 +00:00
|
|
|
#define isatty(...) _isatty(__VA_ARGS__)
|