https://github.com/halide/Halide
Raw File
Tip revision: a4172e1b11036122c152b1ac4d083b602561729c authored by Steven Johnson on 09 February 2024, 17:18:03 UTC
Merge remote-tracking branch 'origin/abadams/parallel_simd_op_check' into srj/test8078
Tip revision: a4172e1
fopen_lfs.cpp
#include "runtime_internal.h"

extern "C" void *fopen64(const char *, const char *);

extern "C" WEAK_INLINE void *halide_fopen(const char *filename, const char *type) {
    return fopen64(filename, type);
}
back to top