1 /*
2  * SPDX-License-Identifier: BSD-3-Clause
3  * SPDX-FileCopyrightText: Copyright The TrustedFirmware-M Contributors
4  */
5 
6 #if defined(__ARMCC_VERSION)
7 
__rt_exit(void)8 void __rt_exit(void)
9 {
10     while (1)
11         ;
12 }
13 
14 #else
15 
_exit(void)16 void _exit(void)
17 {
18     while (1)
19         ;
20 }
21 
22 #endif
23