stdnoreturn.h 224 字节
Newer Older
R
Rich Felker 已提交
1 2
#ifndef _STDNORETURN_H
#define _STDNORETURN_H
3 4 5 6 7

#ifdef __ICCARM__ /* for iar */
#include_next <stdnoreturn.h>
#else

8
#ifndef __cplusplus
R
Rich Felker 已提交
9 10 11
#include <features.h>
#define noreturn _Noreturn
#endif
12 13

#endif /* __ICCARM__ */
14
#endif