https://github.com/halide/Halide
Raw File
Tip revision: 14906ebec6dc6ad53efa1b6bd8173c394888c429 authored by Steven Johnson on 07 February 2024, 18:45:53 UTC
Merge branch 'main' into srj/forward
Tip revision: 14906eb
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