diff options
author | Ken Raeburn <raeburn@mit.edu> | 2009-02-11 00:15:55 +0000 |
---|---|---|
committer | Ken Raeburn <raeburn@mit.edu> | 2009-02-11 00:15:55 +0000 |
commit | 73ba302c18e31ab83cf1a26c8ab0d02499c54c4f (patch) | |
tree | d680ef738d15d9aae9de432b981911b8a60ab261 | |
parent | 6c4efa020640b83bb716bef0d9f5541736d33dd4 (diff) | |
download | krb5-73ba302c18e31ab83cf1a26c8ab0d02499c54c4f.tar.gz krb5-73ba302c18e31ab83cf1a26c8ab0d02499c54c4f.tar.xz krb5-73ba302c18e31ab83cf1a26c8ab0d02499c54c4f.zip |
unistd.h is posix only
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@21955 dc483132-0cff-0310-8789-dd5450dbe970
-rw-r--r-- | src/include/k5-buf.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/include/k5-buf.h b/src/include/k5-buf.h index 4f7a939a9..5f7936fd5 100644 --- a/src/include/k5-buf.h +++ b/src/include/k5-buf.h @@ -41,7 +41,9 @@ #include <stdarg.h> #include <string.h> +#ifndef _WIN32 #include <unistd.h> +#endif /* The k5buf module is intended to allow multi-step string construction in a fixed or dynamic buffer without the need to check |