/* ISO C Runtime Library Copyright (c) 2019-2022 Green Hills Software This program is the property of Green Hills Software, Inc, its contents are proprietary information and no part of it is to be disclosed to anyone except employees of Green Hills Software, Inc., or as agreed in writing signed by the President of Green Hills Software, Inc. */ #ifndef _GHS_STDNORETURN_H #ifdef __ghs__ #pragma ghs startnomisra #if !defined(__GHS_INST_PRO_EPI_IN_C_HEADERS) #pragma ghs instrument_prologue_epilogue push off #endif #endif #define _GHS_STDNORETURN_H #if __STDC_VERSION__ < 201112L #error stdnoreturn.h is only implemented for C11 and later #endif /* __STDC_VERSION__ < 201112L */ #define noreturn _Noreturn #ifdef __ghs__ #if !defined(__GHS_INST_PRO_EPI_IN_C_HEADERS) #pragma ghs instrument_prologue_epilogue pop #endif #pragma ghs endnomisra #endif #endif /* _GHS_STDNORETURN_H */