Commit 756e21a8 by Alan Mishchenko

Problem fix: <unistd.h> is not properly defined.

parent 0d579a43
...@@ -23,13 +23,18 @@ ...@@ -23,13 +23,18 @@
ABC_NAMESPACE_IMPL_START ABC_NAMESPACE_IMPL_START
#ifdef _MSC_VER
#define unlink _unlink
#else
#include <unistd.h>
#endif
#ifdef ABC_USE_PTHREADS #ifdef ABC_USE_PTHREADS
#ifdef _WIN32 #ifdef _WIN32
#include "../lib/pthread.h" #include "../lib/pthread.h"
#else #else
#include <pthread.h> #include <pthread.h>
#include <unistd.h>
#endif #endif
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment