https://github.com/halide/Halide
Raw File
Tip revision: e6078e1766a3b5de4bf9057c9148ab6ade6532ab authored by Andrew Adams on 21 June 2024, 23:09:34 UTC
Merge remote-tracking branch 'origin/main' into fix-7854
Tip revision: e6078e1
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