fix some win32 specific dependencies in poll.c

In order for non-win32 platforms to be able to use poll.c, #ifdef the
inclusion of two header files properly

Signed-off-by: Joachim Schmitz <jojo@schmitz-digital.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Joachim Schmitz 2012-09-17 23:18:27 +02:00 коммит произвёл Junio C Hamano
Родитель 6d45eb1720
Коммит 98c573a902
1 изменённых файлов: 6 добавлений и 2 удалений

Просмотреть файл

@ -24,7 +24,9 @@
# pragma GCC diagnostic ignored "-Wtype-limits"
#endif
#include <malloc.h>
#if defined(WIN32)
# include <malloc.h>
#endif
#include <sys/types.h>
@ -48,7 +50,9 @@
#else
# include <sys/time.h>
# include <sys/socket.h>
# include <sys/select.h>
# ifndef NO_SYS_SELECT_H
# include <sys/select.h>
# endif
# include <unistd.h>
#endif