vc++ does not like unistd.h. Actually, maybe we should check some

non standard headers in configure.ac and guard them appropriately

SVN revision: 55613
This commit is contained in:
Vincent Torri 2010-12-17 17:00:57 +00:00
parent df817afd9a
commit 366ab7acf0
1 changed files with 3 additions and 1 deletions

View File

@ -3,7 +3,9 @@
#ifdef BUILD_ASYNC_EVENTS
#include <unistd.h>
#ifndef _MSC_VER
# include <unistd.h>
#endif
#include <fcntl.h>
#include <errno.h>