commit | da81eca4bb9ac89f4e5643ec4cb2cfa886edea05 | [log] [tgz] |
---|---|---|
author | Misha Brukman <brukman+llvm@gmail.com> | Thu Aug 07 21:35:41 2003 +0000 |
committer | Misha Brukman <brukman+llvm@gmail.com> | Thu Aug 07 21:35:41 2003 +0000 |
tree | d45d5adfd08ef668d520e8430bab8943d2ca4c58 | |
parent | f7066c76d268161ecbaad2e7b161c2003818d071 [diff] [blame] |
close() requires "unistd.h" . git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7695 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Support/FileUtilities.cpp b/lib/Support/FileUtilities.cpp index 9f9ef30..3e4c270 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>