https://github.com/halide/Halide
Raw File
Tip revision: 6b9481df76ce5baf1fe8ec72cdfe71be429f0dc7 authored by Derek Gerstmann on 30 October 2023, 22:35:28 UTC
Clang tidy/format pass
Tip revision: 6b9481d
posix_io.cpp
#include "HalideRuntime.h"

extern "C" {

WEAK void halide_default_print(void *user_context, const char *str) {
    write(STDOUT_FILENO, str, strlen(str));
}
}
back to top