https://github.com/halide/Halide
Raw File
Tip revision: b3507f95d65d92203d6ccfce81b3823650c51cda authored by Andrew Adams on 20 October 2023, 17:23:13 UTC
Merge branch 'main' into abadams/fix_7909
Tip revision: b3507f9
windows_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