Newer
Older
arm-trusted-firmware / lib / stdlib / exit.c
@Roberto Vargas Roberto Vargas on 28 Feb 2018 220 bytes Fix MISRA rule 8.4 in common code
/*
 * Copyright (c) 2015-2018, ARM Limited and Contributors. All rights reserved.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

#include <debug.h>
#include <stdlib.h>

void exit(int v)
{
	ERROR("EXIT\n");
	panic();
}