https://github.com/halide/Halide
Raw File
Tip revision: ae71c3867972308a2f86409d727216c52cb1635c authored by Aelphy on 21 April 2023, 16:48:24 UTC
[xtensa] Fixed a bug in interleave RGB for Q8
Tip revision: ae71c38
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