Can't do this on Xbox

This commit is contained in:
twinaphex 2017-05-20 15:02:34 +02:00
parent 58787e6d89
commit e4210f5b00

View File

@ -24,12 +24,17 @@
#include <ctype.h>
#ifdef _WIN32
#ifndef _XBOX
#include <windows.h>
#endif
#include <direct.h>
#else
#include <unistd.h>
#endif
#ifdef _WIN32
#ifndef _XBOX
#if defined(_WIN32)
size_t read_stdin(char *buf, size_t size)
{
DWORD i;
@ -134,3 +139,5 @@ size_t read_stdin(char *buf, size_t size)
return has_read;
}
#endif
#endif