blob: f6d33a53067c0fd348ab1128f7f1100baa3f196f [file] [log] [blame]
/*
* Copyright (c) 2013-2024, Arm Limited and Contributors. All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
#include <assert.h>
#ifndef NDEBUG
#include "libc_platform.h"
void __dead2 __assert(const char *file, int line, const char *func, const char *assertion)
{
platform_assert(file, line, func, assertion);
}
#endif