https://github.com/halide/Halide
Raw File
Tip revision: 45b767ea12730bec7b08a2a93dfb6bb5e4e80f28 authored by Andrew Adams on 06 September 2023, 21:57:29 UTC
clang-format
Tip revision: 45b767e
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