https://github.com/halide/Halide
Raw File
Tip revision: 61700afcd33883ab821491476a0f7962fa66d798 authored by Steven Johnson on 31 March 2023, 16:48:29 UTC
Remove unused 'external_buffers' member in Codegen_Xtensa
Tip revision: 61700af
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