blob: 19c7e86b1192e11027b800d67a0a30edc3f0004f [file] [log] [blame] [edit]
/*
* Copyright 2020, Data61, CSIRO (ABN 41 687 119 230)
* Copyright 2021, HENSOLDT Cyber
*
* SPDX-License-Identifier: GPL-2.0-only
*/
/* Default implementations of required utility functions. Override these under
* plat-* if there is a more appropriate implementation for a given platform.
*/
#include <elfloader_common.h>
#include <printf.h>
WEAK NORETURN void abort(void)
{
printf("abort() called.\n");
while (1);
UNREACHABLE();
}