mirror of
https://github.com/apache/nuttx.git
synced 2026-05-18 08:54:05 +08:00
stdnoreturn.h: Definitions removed from compiler.h below here
This commit is contained in:
+20
-4
@@ -40,10 +40,26 @@
|
||||
* Included Files
|
||||
****************************************************************************/
|
||||
|
||||
/* If the noreturn keyword is support by this toolchain, then keywork will be
|
||||
* defined in compiler.h.
|
||||
*/
|
||||
#ifdef __GNUC__
|
||||
|
||||
#include <nuttx/compiler.h>
|
||||
/* C11 adds _Noreturn keyword that the function will not return. */
|
||||
|
||||
# if __cplusplus >= 201103L
|
||||
# define noreturn _Noreturn
|
||||
# else
|
||||
# define noreturn
|
||||
# endif
|
||||
|
||||
#elif defined(SDCC) || defined(__SDCC)
|
||||
|
||||
/* Current SDCC supports noreturn via C11 _Noreturn keyword. */
|
||||
|
||||
# define noreturn _Noreturn
|
||||
|
||||
#else
|
||||
|
||||
# define noreturn
|
||||
|
||||
#endif
|
||||
|
||||
#endif /* __INCLUDE_STDNORETURN_H */
|
||||
|
||||
Reference in New Issue
Block a user