diff options
author | David Cole <david.cole@kitware.com> | 2006-05-23 16:38:22 (GMT) |
---|---|---|
committer | David Cole <david.cole@kitware.com> | 2006-05-23 16:38:22 (GMT) |
commit | 13a68cd97888d451d9f40b61891709af1648432b (patch) | |
tree | 8cf57a71bc01c1890e8f56ffecb3a85d208ceafe /Utilities/cmtar/append.c | |
parent | 35334d01cdf533262c1fad9bfcd7794afaaf6d09 (diff) | |
download | CMake-13a68cd97888d451d9f40b61891709af1648432b.zip CMake-13a68cd97888d451d9f40b61891709af1648432b.tar.gz CMake-13a68cd97888d451d9f40b61891709af1648432b.tar.bz2 |
COMP: Fix warnings on Borland dashboards...
Diffstat (limited to 'Utilities/cmtar/append.c')
-rw-r--r-- | Utilities/cmtar/append.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Utilities/cmtar/append.c b/Utilities/cmtar/append.c index 6b746ea..38e8294 100644 --- a/Utilities/cmtar/append.c +++ b/Utilities/cmtar/append.c @@ -31,8 +31,9 @@ #ifdef HAVE_UNISTD_H # include <unistd.h> #endif -#ifdef _MSC_VER -#include <io.h> + +#ifdef HAVE_IO_H +# include <io.h> #endif struct tar_dev |