abort.c 229 B

123456789101112131415
  1. /*
  2. * Copyright (c) 2013-2018, ARM Limited and Contributors. All rights reserved.
  3. *
  4. * SPDX-License-Identifier: BSD-3-Clause
  5. */
  6. #include <stdlib.h>
  7. #include <common/debug.h>
  8. void abort(void)
  9. {
  10. ERROR("ABORT\n");
  11. panic();
  12. }