https://github.com/halide/Halide
Raw File
Tip revision: 9a2e4d04a466d026d2e53e3159d7d5a3d1fc2a82 authored by Aelphy on 11 June 2024, 17:39:44 UTC
Commented on the constraints for the IVP_SRSN_2X32 instruction argument
Tip revision: 9a2e4d0
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