Browse Source

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>
maint
Joachim Schmitz 13 years ago committed by Junio C Hamano
parent
commit
98c573a902
  1. 4
      compat/poll/poll.c

4
compat/poll/poll.c

@ -24,7 +24,9 @@ @@ -24,7 +24,9 @@
# pragma GCC diagnostic ignored "-Wtype-limits"
#endif

#if defined(WIN32)
# include <malloc.h>
#endif

#include <sys/types.h>

@ -48,7 +50,9 @@ @@ -48,7 +50,9 @@
#else
# include <sys/time.h>
# include <sys/socket.h>
# ifndef NO_SYS_SELECT_H
# include <sys/select.h>
# endif
# include <unistd.h>
#endif


Loading…
Cancel
Save