https://github.com/halide/Halide
Raw File
Tip revision: b313f6634255bf21d7429c1cd5d948cd72012d49 authored by Volodymyr Kysenko on 21 November 2023, 17:18:45 UTC
Always call lower_round_to_nearest_ties_to_even on arm32
Tip revision: b313f66
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