https://github.com/halide/Halide
Raw File
Tip revision: 2a8ced8cbcfa9aa31acf1d2eafaa89d5097d5cfc authored by Steven Johnson on 01 December 2020, 18:46:33 UTC
Merge branch 'master' into abadams/fix_fft_compile_time_regression
Tip revision: 2a8ced8
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