diff options
Diffstat (limited to 'llvm/lib/Fuzzer/FuzzerIOWindows.cpp')
-rw-r--r-- | llvm/lib/Fuzzer/FuzzerIOWindows.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/llvm/lib/Fuzzer/FuzzerIOWindows.cpp b/llvm/lib/Fuzzer/FuzzerIOWindows.cpp index 1d82f416272..84941bae28f 100644 --- a/llvm/lib/Fuzzer/FuzzerIOWindows.cpp +++ b/llvm/lib/Fuzzer/FuzzerIOWindows.cpp @@ -299,6 +299,11 @@ bool IsInterestingCoverageFile(const std::string &FileName) { return true; } +void RawPrint(const char *Str) { + // Not tested, may or may not work. Fix if needed. + Printf("%s", Str); +} + } // namespace fuzzer #endif // LIBFUZZER_WINDOWS |