Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007 #ifndef PLATFORM_H
00008 #define PLATFORM_H
00009
00010 #ifdef HAVE_CONFIG_H
00011 #include "config.h"
00012 #endif
00013
00014
00015 #ifdef __MINGW32__
00016 #include <fcntl.h>
00017 unsigned int _CRT_fmode = _O_BINARY;
00018 #endif
00019
00020 #ifdef __CYGWIN__
00021 #include <fcntl.h>
00022 #include <io.h>
00023 static inline void platform_init(void) {
00024 setmode(0,O_BINARY);
00025 setmode(1,O_BINARY);
00026 }
00027 #else
00028 static inline void platform_init(void) {
00029
00030 }
00031 #endif
00032
00033 #endif