diff options
author | Andreas Schneider <asn@cryptomilk.org> | 2013-07-22 10:41:58 +0200 |
---|---|---|
committer | Andreas Schneider <asn@cryptomilk.org> | 2013-07-23 10:44:51 +0200 |
commit | df81a05505514b384d10c9b192137584040e4984 (patch) | |
tree | 79c078d9f70668ccb42836489dee3febb2abd7d0 /examples/samplesftp.c | |
parent | 7d07e1f1bd06b509b8ee4bae4b22338c5e16735a (diff) | |
download | libssh-df81a05505514b384d10c9b192137584040e4984.tar.gz libssh-df81a05505514b384d10c9b192137584040e4984.tar.xz libssh-df81a05505514b384d10c9b192137584040e4984.zip |
cmake: Check for unistd.h.
Diffstat (limited to 'examples/samplesftp.c')
-rw-r--r-- | examples/samplesftp.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/examples/samplesftp.c b/examples/samplesftp.c index 968624e..457e60a 100644 --- a/examples/samplesftp.c +++ b/examples/samplesftp.c @@ -15,11 +15,13 @@ clients must be made or how a client should react. #include <sys/statvfs.h> #include <stdio.h> -#include <unistd.h> #include <errno.h> #include <fcntl.h> #include <stdlib.h> #include <string.h> +#ifdef HAVE_UNISTD_H +#include <unistd.h> +#endif #include <libssh/libssh.h> #include <libssh/sftp.h> |