openMSX
cstdiop.hh
Go to the documentation of this file.
1#ifndef CSTDIOP_HH
2#define CSTDIOP_HH
3
4#include <cstdio>
5
6#ifdef _MSC_VER
7#include <io.h>
8
9#define STDIN_FILENO _fileno(stdin)
10#define dup _dup
11
12#endif
13
14#endif