https://github.com/halide/Halide
Raw File
Tip revision: d2ab64343510324fde8432623f3a8fc2b04f0754 authored by Steven Johnson on 17 April 2023, 23:49:41 UTC
Update Generator.cpp
Tip revision: d2ab643
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