/* * Copyright (C) 2019-2021 Intel Corporation * * SPDX-License-Identifier: MIT * */ #include "shared/source/helpers/abort.h" #include namespace NEO { void abortExecution() { abort(); } } // namespace NEO