https://github.com/halide/Halide
Raw File
Tip revision: 9a962bd27b5f19b7e7917797fac1412440d7929a authored by Steven Johnson on 20 July 2018, 18:42:09 UTC
Merge branch 'master' into newer_ion_ioctl
Tip revision: 9a962bd
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