https://github.com/halide/Halide
Raw File
Tip revision: efb326253c73a555d7a4608e41228665d1785e97 authored by Steven Johnson on 09 December 2020, 12:06:57 UTC
Update images used in apps/ tests (#5538)
Tip revision: efb3262
posix_abort.cpp
#include "runtime_internal.h"

extern "C" void abort();

extern "C" WEAK_INLINE void halide_abort() {
    abort();
}
back to top