diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2013-01-22 17:31:49 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2013-01-22 17:31:49 +0000 |
commit | 469238676dd466a55b3808461e262f5645f888d1 (patch) | |
tree | 97c9e3f508baf64ff204fb99cd12a625231c259c /cyclone/shadow | |
parent | 886e1012372ea48f4946f40ad9dee577389b76f2 (diff) |
use HAVE_UNISTD_H to determine when to include unistd.h
svn path=/trunk/externals/miXed/; revision=16960
Diffstat (limited to 'cyclone/shadow')
-rw-r--r-- | cyclone/shadow/dummies.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cyclone/shadow/dummies.c b/cyclone/shadow/dummies.c index 18ce3e8..1d18753 100644 --- a/cyclone/shadow/dummies.c +++ b/cyclone/shadow/dummies.c @@ -3,7 +3,7 @@ * WARRANTIES, see the file, "LICENSE.txt," in this distribution. */ #include <string.h> -#ifdef UNIX +#ifdef HAVE_UNISTD_H #include <unistd.h> #endif #ifdef _WIN32 |