1 /*
2  * Arm SCP/MCP Software
3  * Copyright (c) 2018-2021, Arm Limited and Contributors. All rights reserved.
4  *
5  * SPDX-License-Identifier: BSD-3-Clause
6  *
7  * Description:
8  *      Provides <stdnoreturn.h> features missing in certain standard library
9  *      implementations.
10  */
11 
12 #ifndef FWK_NORETURN_H
13 #define FWK_NORETURN_H
14 
15 #ifdef __ARMCC_VERSION
16 #   define noreturn _Noreturn
17 #else
18 #    include <stdnoreturn.h>
19 #endif
20 
21 #endif /* FWK_NORETURN_H */
22