https://github.com/halide/Halide
Raw File
Tip revision: 518d6d965fd19638565d54c02caf8b77eca96005 authored by Zalman Stern on 11 October 2018, 06:56:34 UTC
Address review feedback by adding a comment and fixing an erroneous
Tip revision: 518d6d9
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