summaryrefslogtreecommitdiff
path: root/stdnoreturn.c
blob: 44cd2f1ab92fd16d49c8c4e4b296f1c02f63eb08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#if defined __STDC_VERSION__ && 201112L <= __STDC_VERSION__
#include <stdnoreturn.h>
#include "test.h"

void test_stdnoreturn_h(void)
{
	testing_header("stdnoreturn.h");

	/* tested by the fact that this compiles */

	testing_end();
}

#else
void test_stdnoreturn_h(void)
{
}
#endif