https://github.com/halide/Halide
Raw File
Tip revision: 4e9f81211163b4dbaf177c0be8510e675154ee77 authored by Andrew Adams on 01 January 2023, 23:01:45 UTC
Merge branch 'abadams/fix_7260' of https://github.com/halide/Halide into abadams/fix_7260
Tip revision: 4e9f812
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