<io.h> provides read/write/open/...

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14017 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2004-06-04 20:05:35 +00:00
parent a833fca56c
commit 5811862f23
2 changed files with 4 additions and 2 deletions

View File

@ -16,12 +16,13 @@
#include "Config/config.h"
#ifdef HAVE_UNISTD_H
#if defined(HAVE_UNISTD_H) && !defined(_MSC_VER)
#include <unistd.h>
#endif
#ifdef _WIN32
#include <process.h>
#include <io.h>
#endif
#endif

View File

@ -16,12 +16,13 @@
#include "Config/config.h"
#ifdef HAVE_UNISTD_H
#if defined(HAVE_UNISTD_H) && !defined(_MSC_VER)
#include <unistd.h>
#endif
#ifdef _WIN32
#include <process.h>
#include <io.h>
#endif
#endif