https://github.com/halide/Halide
Raw File
Tip revision: 1abeb98cf3bfdd14ebf5a7700a9c6fbfee387ec1 authored by Andrew Adams on 02 April 2024, 19:28:31 UTC
Add test
Tip revision: 1abeb98
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