diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2023-04-29 16:25:06 +0900 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2023-05-11 23:31:56 +0900 |
commit | e13d1b5227a77bb7becfd4c49a60720ecc33f870 (patch) | |
tree | 83edc94785cea676e1d3168a81c9c7dce9dae9da /llvm/lib/Object/ArchiveWriter.cpp | |
parent | 33b69b97565cf19f8e11173fd851e56ce07656f0 (diff) | |
download | llvm-e13d1b5227a77bb7becfd4c49a60720ecc33f870.zip llvm-e13d1b5227a77bb7becfd4c49a60720ecc33f870.tar.gz llvm-e13d1b5227a77bb7becfd4c49a60720ecc33f870.tar.bz2 |
llvm/lib: Use <cerrno> explicitly since D146395 has hidden `errno`
Differential Revision: https://reviews.llvm.org/D149513
Diffstat (limited to 'llvm/lib/Object/ArchiveWriter.cpp')
-rw-r--r-- | llvm/lib/Object/ArchiveWriter.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Object/ArchiveWriter.cpp b/llvm/lib/Object/ArchiveWriter.cpp index 1a540e2..04c7d1d 100644 --- a/llvm/lib/Object/ArchiveWriter.cpp +++ b/llvm/lib/Object/ArchiveWriter.cpp @@ -34,6 +34,7 @@ #include "llvm/Support/SmallVectorMemoryBuffer.h" #include "llvm/Support/raw_ostream.h" +#include <cerrno> #include <map> #if !defined(_MSC_VER) && !defined(__MINGW32__) |