https://github.com/halide/Halide
Raw File
Tip revision: 0ad79dadb360be8345e4d839c5c9f24a377379c8 authored by Andrew Adams on 05 December 2023, 18:09:11 UTC
Add missing print
Tip revision: 0ad79da
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