blob: 432b1d075a6a8779668a150ae10b1eac2a1ee98d [file] [log] [blame]
Harry Liebel0f702c62013-12-17 18:19:04 +00001/*
Roberto Vargas7fabe1a2018-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-arm82cb2c12017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Harry Liebel0f702c62013-12-17 18:19:04 +00005 */
6
Roberto Vargas7fabe1a2018-02-12 12:36:17 +00007#include <stdlib.h>
Harry Liebel0f702c62013-12-17 18:19:04 +00008
Antonio Nino Diaz09d40e02018-12-14 00:18:21 +00009#include <common/debug.h>
10
Antonio Nino Diaz4661abc2018-08-16 14:53:05 +010011void abort(void)
Harry Liebel0f702c62013-12-17 18:19:04 +000012{
Dan Handley6ad2e462014-07-29 17:14:00 +010013 ERROR("ABORT\n");
14 panic();
Harry Liebel0f702c62013-12-17 18:19:04 +000015}