diff options
Diffstat (limited to 'compiler-rt/lib/fuzzer/FuzzerIOWindows.cpp')
-rw-r--r-- | compiler-rt/lib/fuzzer/FuzzerIOWindows.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/compiler-rt/lib/fuzzer/FuzzerIOWindows.cpp b/compiler-rt/lib/fuzzer/FuzzerIOWindows.cpp index e45c137373b..bb33343b76a 100644 --- a/compiler-rt/lib/fuzzer/FuzzerIOWindows.cpp +++ b/compiler-rt/lib/fuzzer/FuzzerIOWindows.cpp @@ -336,6 +336,14 @@ void RawPrint(const char *Str) { _write(2, Str, strlen(Str)); } +void MkDir(const std::string &Path) { + Printf("MkDir: unimplemented\n"); +} + +void RmDir(const std::string &Path) { + Printf("RmDir: unimplemented\n"); +} + } // namespace fuzzer #endif // LIBFUZZER_WINDOWS |