https://github.com/halide/Halide
Raw File
Tip revision: 375f2ece70b8edeaf970192285e875f7e8fd04a0 authored by Steven Johnson on 01 April 2020, 00:39:43 UTC
Update AddAtomicMutex.h
Tip revision: 375f2ec
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