https://github.com/halide/Halide
Raw File
Tip revision: d7b29cf740b95dc0e40c6dd6268c7d43d4670444 authored by Steven Johnson on 28 December 2022, 22:45:00 UTC
Add missing `cache.clear()` call at end of functions
Tip revision: d7b29cf
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