diff options
Diffstat (limited to 'llvm/lib/Fuzzer/FuzzerIO.h')
-rw-r--r-- | llvm/lib/Fuzzer/FuzzerIO.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/llvm/lib/Fuzzer/FuzzerIO.h b/llvm/lib/Fuzzer/FuzzerIO.h index 1f79f3632ba..28c6ba09586 100644 --- a/llvm/lib/Fuzzer/FuzzerIO.h +++ b/llvm/lib/Fuzzer/FuzzerIO.h @@ -48,6 +48,9 @@ void CloseStdout(); void Printf(const char *Fmt, ...); +// Print using raw syscalls, useful when printing at early init stages. +void RawPrint(const char *Str); + // Platform specific functions: bool IsFile(const std::string &Path); |