https://github.com/halide/Halide
Raw File
Tip revision: b7032904d311c7a88d6983a2a9c019ad0c8219ea authored by Steven Johnson on 03 April 2020, 00:38:50 UTC
Remove unnecessary includes of Buffer.h
Tip revision: b703290
posix_abort.cpp
#include "runtime_internal.h"

extern "C" void abort();

namespace Halide {
namespace Runtime {
namespace Internal {

WEAK __attribute__((always_inline)) void halide_abort() {
    abort();
}

}  // namespace Internal
}  // namespace Runtime
}  // namespace Halide
back to top