https://github.com/halide/Halide
Raw File
Tip revision: 72224e1bd0bfe610b52aefefcf523fe1c029369b authored by Andrew Adams on 05 April 2021, 17:06:25 UTC
Add explicit cast to remove ambiguous operator== (Fixes #5329)
Tip revision: 72224e1
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