https://github.com/halide/Halide
Raw File
Tip revision: 34a45e3aa7f740cf35f1136552f36ff091a54907 authored by Steven Johnson on 08 February 2019, 18:44:02 UTC
Fix more MSVC nonsense
Tip revision: 34a45e3
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