]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/lld/ELF/Filesystem.h
Merge llvm, clang, lld, lldb, compiler-rt and libc++ r308421, and update
[FreeBSD/FreeBSD.git] / contrib / llvm / tools / lld / ELF / Filesystem.h
1 //===- Filesystem.h ---------------------------------------------*- C++ -*-===//
2 //
3 //                             The LLVM Linker
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9
10 #ifndef LLD_ELF_FILESYSTEM_H
11 #define LLD_ELF_FILESYSTEM_H
12
13 #include "lld/Core/LLVM.h"
14
15 namespace lld {
16 namespace elf {
17 void unlinkAsync(StringRef Path);
18 std::error_code tryCreateFile(StringRef Path);
19 } // namespace elf
20 } // namespace lld
21
22 #endif