1249261Sdim/*===---- stdnoreturn.h - Standard header for noreturn macro ---------------===
2249261Sdim *
3249261Sdim * Permission is hereby granted, free of charge, to any person obtaining a copy
4249261Sdim * of this software and associated documentation files (the "Software"), to deal
5249261Sdim * in the Software without restriction, including without limitation the rights
6249261Sdim * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7249261Sdim * copies of the Software, and to permit persons to whom the Software is
8249261Sdim * furnished to do so, subject to the following conditions:
9249261Sdim *
10249261Sdim * The above copyright notice and this permission notice shall be included in
11249261Sdim * all copies or substantial portions of the Software.
12249261Sdim *
13249261Sdim * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14249261Sdim * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15249261Sdim * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16249261Sdim * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17249261Sdim * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18249261Sdim * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19249261Sdim * THE SOFTWARE.
20249261Sdim *
21249261Sdim *===-----------------------------------------------------------------------===
22249261Sdim */
23249261Sdim
24249261Sdim#ifndef __STDNORETURN_H
25249261Sdim#define __STDNORETURN_H
26249261Sdim
27249261Sdim#define noreturn _Noreturn
28249261Sdim#define __noreturn_is_defined 1
29249261Sdim
30249261Sdim#endif /* __STDNORETURN_H */
31