https://github.com/halide/Halide
Raw File
Tip revision: d10c6fd35a6c331493843bc2db2ccf0c3aed6a9a authored by Andrew Adams on 12 June 2023, 17:29:45 UTC
Fix inverted may_subtile checks
Tip revision: d10c6fd
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