diff options
Diffstat (limited to 'compiler-rt/lib/fuzzer/FuzzerIO.h')
-rw-r--r-- | compiler-rt/lib/fuzzer/FuzzerIO.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/compiler-rt/lib/fuzzer/FuzzerIO.h b/compiler-rt/lib/fuzzer/FuzzerIO.h index c3bc6089eb2..b31aea9ded7 100644 --- a/compiler-rt/lib/fuzzer/FuzzerIO.h +++ b/compiler-rt/lib/fuzzer/FuzzerIO.h @@ -81,6 +81,10 @@ void DiscardOutput(int Fd); intptr_t GetHandleFromFd(int fd); +void MkDir(const std::string &Path); +void RmDir(const std::string &Path); +void RmFilesInDir(const std::string &Path); + } // namespace fuzzer #endif // LLVM_FUZZER_IO_H |