https://github.com/halide/Halide
Raw File
Tip revision: ab047ba6e7c000d9a1eb0c576a8b094fe7bd2d72 authored by Volodymyr Kysenko on 20 September 2023, 23:17:52 UTC
Experiment
Tip revision: ab047ba
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