Ecore Anim: fix compilation on Windows

sys/select.h is not available on Windows
This commit is contained in:
Vincent Torri 2015-07-07 13:48:50 +02:00 committed by Tom Hacohen
parent f965fbe623
commit 0985ec1cac
1 changed files with 1 additions and 3 deletions

View File

@ -8,8 +8,6 @@
#include <string.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/select.h>
#include <fcntl.h>
#ifdef _WIN32
@ -22,7 +20,7 @@
#else
# include <unistd.h>
# include <sys/select.h>
# include <fcntl.h>
# define pipe_write(fd, buffer, size) write((fd), buffer, size)