Sign in
pigweed
/
third_party
/
github
/
zephyrproject-rtos
/
zephyr
/
5f68ea686dece64172ab0b106df090e8028cf316
/
.
/
lib
/
libc
/
minimal
/
source
/
stdlib
/
exit.c
blob: 5700cd955866226f5ca7fc6d7892ec90d9cfce8d [
file
] [
log
] [
blame
]
/*
* Copyright (c) 2019 Linaro Limited
*
* SPDX-License-Identifier: Apache-2.0
*/
#include
<stdlib.h>
#include
<zephyr/kernel.h>
void
_exit
(
int
status
)
{
printk
(
"exit\n"
);
while
(
1
)
{
}
}