exit.c 190 B

123456789101112131415
  1. /*
  2. * Copyright (c) 2019 Linaro Limited
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #include <stdlib.h>
  7. #include <zephyr.h>
  8. void _exit(int status)
  9. {
  10. printk("exit\n");
  11. while (1) {
  12. }
  13. }