https://github.com/halide/Halide
Raw File
Tip revision: 649cbc93a01e90f8483c69f9b43be2141032e9bf authored by Andrew Adams on 06 August 2018, 21:51:40 UTC
Handle deprecated feature in target internal test
Tip revision: 649cbc9
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