Sign in
pigweed
/
third_party
/
github
/
zephyrproject-rtos
/
zephyr
/
d22c7b0cf2aa612a00b0cc260ebb0e2ec1d109c0
/
.
/
lib
/
libc
/
picolibc
/
exit.c
blob: cf4ab856e25ac45d068b0f47db4157105e872156 [
file
] [
log
] [
blame
]
/*
* Copyright © 2021, Keith Packard <keithp@keithp.com>
*
* SPDX-License-Identifier: Apache-2.0
*/
#include
"picolibc-hooks.h"
__weak
void
_exit
(
int
status
)
{
printf
(
"exit\n"
);
while
(
1
)
{
Z_SPIN_DELAY
(
100
);
}
}