https://github.com/halide/Halide
Raw File
Tip revision: 476e1f707695f6a3d458e3b5f3e8dccdf27a5c8d authored by Andrew Adams on 16 October 2023, 17:15:34 UTC
Merge remote-tracking branch 'origin/main' into abadams/fix_7893
Tip revision: 476e1f7
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