summaryrefslogtreecommitdiff
path: root/stdatomic.c
blob: 932b8b58633198382cf5391f4b87ef20d9de1ad1 (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__ && ! defined __STDC_NO_ATOMICS__
#include <stdatomic.h>
#include "test.h"

void test_stdatomic_h(void)
{
	testing_header("stdatomic.h");

	/* TODO */

	testing_end();
}

#else
void test_stdatomic_h(void)
{
}
#endif