https://github.com/halide/Halide
Raw File
Tip revision: eafc641758063623fe89ad795596e5fac3943cc3 authored by Andrew Adams on 22 March 2023, 17:11:22 UTC
Merge remote-tracking branch 'origin/main' into abadams/use_pmaddubsw_for_downsample
Tip revision: eafc641
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