1b3e94a20d
From release 0.1.0 pre-patched archive. This includes all Red Bear modifications previously maintained as patches in local/patches/relibc/.
20 lines
387 B
C
20 lines
387 B
C
/* Spec:
|
|
* The <stdnoreturn.h> header shall define the macro noreturn which shall
|
|
* expand to _Noreturn */
|
|
|
|
#ifndef _STDNORETURN_H
|
|
#define _STDNORETURN_H
|
|
|
|
#ifndef __cplusplus
|
|
/* Borrowed from musl */
|
|
#if __STDC_VERSION__ >= 201112L
|
|
#elif defined(__GNUC__)
|
|
#define _Noreturn __attribute__((__noreturn__))
|
|
#else
|
|
#define _Noreturn
|
|
#endif
|
|
#define noreturn _Noreturn
|
|
#endif
|
|
|
|
#endif
|