diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2003-08-07 21:35:41 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2003-08-07 21:35:41 +0000 |
commit | da81eca4bb9ac89f4e5643ec4cb2cfa886edea05 (patch) | |
tree | d45d5adfd08ef668d520e8430bab8943d2ca4c58 /lib/Support/FileUtilities.cpp | |
parent | f7066c76d268161ecbaad2e7b161c2003818d071 (diff) |
close() requires "unistd.h" .
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7695 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support/FileUtilities.cpp')
-rw-r--r-- | lib/Support/FileUtilities.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Support/FileUtilities.cpp b/lib/Support/FileUtilities.cpp index 9f9ef30686..3e4c270da5 100644 --- a/lib/Support/FileUtilities.cpp +++ b/lib/Support/FileUtilities.cpp @@ -6,6 +6,7 @@ //===----------------------------------------------------------------------===// #include "Support/FileUtilities.h" +#include "Config/unistd.h" #include <fstream> #include <iostream> #include <cstdio> |