https://github.com/halide/Halide
Raw File
Tip revision: 0e251fbef7297848a02ed33c6293049af64087f8 authored by Steven Johnson on 18 March 2023, 00:24:35 UTC
WIP
Tip revision: 0e251fb
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