https://github.com/halide/Halide
Raw File
Tip revision: a239b59828d7c84413a46def9f146d92599c8498 authored by Andrew Adams on 21 June 2024, 23:09:26 UTC
Merge remote-tracking branch 'origin/main' into abadams/fix_8280
Tip revision: a239b59
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