https://github.com/halide/Halide
Raw File
Tip revision: a3442547d4cdec0c40bc48772658c8f8f4d7de4d authored by Volodymyr Kysenko on 14 February 2023, 23:35:03 UTC
Remove __restrict from print_assignment
Tip revision: a344254
fopen_lfs.cpp
#include "runtime_internal.h"

extern "C" void *fopen64(const char *, const char *);

extern "C" WEAK_INLINE void *halide_fopen(const char *filename, const char *type) {
    return fopen64(filename, type);
}
back to top