https://github.com/halide/Halide
Raw File
Tip revision: f3b548f4754d44434f3f94689077d27b45b607fe authored by Andrew Adams on 01 September 2023, 20:43:19 UTC
Skip onnx app on mac
Tip revision: f3b548f
fopen.cpp
#include "runtime_internal.h"

extern "C" void *fopen(const char *, const char *);

extern "C" WEAK_INLINE void *halide_fopen(const char *filename, const char *type) {
    return fopen(filename, type);
}
back to top