blob: c9d16cccc68a6dc088fc6ce8731c93677b654404 [file] [log] [blame]
Harry Liebel0f702c62013-12-17 18:19:04 +00001/*
Roberto Vargas05712702018-02-12 12:36:17 +00002 * Copyright (c) 2013-2018, ARM Limited and Contributors. All rights reserved.
Harry Liebel0f702c62013-12-17 18:19:04 +00003 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Harry Liebel0f702c62013-12-17 18:19:04 +00005 */
6
Dan Handley91b624e2014-07-29 17:14:00 +01007#include <debug.h>
Roberto Vargas05712702018-02-12 12:36:17 +00008#include <stdlib.h>
Harry Liebel0f702c62013-12-17 18:19:04 +00009
Antonio Nino Diaz9eddb1e2018-08-16 14:53:05 +010010void abort(void)
Harry Liebel0f702c62013-12-17 18:19:04 +000011{
Dan Handley91b624e2014-07-29 17:14:00 +010012 ERROR("ABORT\n");
13 panic();
Harry Liebel0f702c62013-12-17 18:19:04 +000014}