https://github.com/halide/Halide
Raw File
Tip revision: b497cf1c42dea81275439041318a59f91b012d64 authored by Andrew Adams on 18 December 2018, 19:03:41 UTC
Enable tests
Tip revision: b497cf1
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