abort.c 183 B

1234567891011121314
  1. /*
  2. * Copyright (c) 2020 Linaro Limited
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #include <stdlib.h>
  7. #include <zephyr.h>
  8. void abort(void)
  9. {
  10. printk("abort()\n");
  11. k_panic();
  12. }