stdnoreturn.h: remove C++11 dependency. Applies to C too.

This commit is contained in:
Gregory Nutt 2017-10-02 07:38:43 -06:00
parent c76774cfb0
commit 0617f0bfb2

View File

@ -44,11 +44,7 @@
/* C11 adds _Noreturn keyword that the function will not return. */
# if __cplusplus >= 201103L
# define noreturn _Noreturn
# else
# define noreturn
# endif
# define noreturn _Noreturn
#elif defined(SDCC) || defined(__SDCC)