https://github.com/halide/Halide
Raw File
Tip revision: baaf45c5fbe8f08a45aefdff7d09ec2f5c0cfdef authored by Steven Johnson on 22 December 2018, 00:21:50 UTC
minimal fixes
Tip revision: baaf45c
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