https://github.com/halide/Halide
Raw File
Tip revision: 2e48dadfffe25da7c6a7c0381350992eff9ba545 authored by Jing Pu on 21 August 2018, 19:51:41 UTC
sync the test format to #2996
Tip revision: 2e48dad
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