-
WikiChip
WikiChip
-
Architectures
Popular x86
-
Intel
- Client
- Server
- Big Cores
- Small Cores
-
AMD
Popular ARM
-
ARM
- Server
- Big
- Little
-
Cavium
-
Samsung
-
-
Chips
Popular Families
-
Ampere
-
Apple
-
Cavium
-
HiSilicon
-
MediaTek
-
NXP
-
Qualcomm
-
Renesas
-
Samsung
-
From WikiChip
Difference between revisions of "c/stdnoreturn.h"
< c
m (Inject moved page Stdnoreturn.h - to Stdnoreturn.h - C) |
m |
||
Line 1: | Line 1: | ||
− | {{ | + | {{c title|<stdnoreturn.h> Header}} |
{{C Standard Library}} | {{C Standard Library}} | ||
Line 11: | Line 11: | ||
! Macro Name !! Description !! Since | ! Macro Name !! Description !! Since | ||
|- | |- | ||
− | | | + | | {{c|stdnoreturn.h/noreturn|noreturn}} || expands to {{c|_Noreturn}} || [[C11]] |
|} | |} | ||
Revision as of 13:52, 23 November 2015
C Standard Library |
<assert.h>(C89) <complex.h>(C99)op <ctype.h>(C89) <errno.h>(C89) <fenv.h>(C99) <float.h>(C89) <inttypes.h>(C99) <iso646.h>(NA1) <limits.h>(C89) <locale.h>(C89) <math.h>(C89) <setjmp.h>(C89) <signal.h>(C89) <stdalign.h>(C11) <stdarg.h>(C89) <stdatomic.h>(C11)op <stdbool.h>(C99) <stddef.h>(C89) <stdint.h>(C99) <stdio.h>(C89) <stdlib.h>(C89) <stdnoreturn.h>(C11) <string.h>(C89) <tgmath.h>(C99) <threads.h>(C11)op <time.h>(C89) <uchar.h>(C11) <wchar.h>(NA1) <wctype.h>(NA1) |
The <stdnoreturn.h> header is part of the standard library of the C programming language that provides a single convenient macro for non-returning functions. This header was added in C11.
Macros
The header provides a single macro definition:
Macro Name | Description | Since |
---|---|---|
noreturn | expands to _Noreturn | C11 |