/* * Copyright © 2021, Keith Packard * * SPDX-License-Identifier: Apache-2.0 */ #include "picolibc-hooks.h" __weak void _exit(int status) { printf("exit\n"); while (1) { Z_SPIN_DELAY(100); } }