2020-05-31 21:54:54 +03: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-09 00:13:09 +03:00
|
|
|
#define isatty(...) _isatty(__VA_ARGS__)
|