diff options
Diffstat (limited to 'stdatomic.c')
-rw-r--r-- | stdatomic.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/stdatomic.c b/stdatomic.c new file mode 100644 index 0000000..932b8b5 --- /dev/null +++ b/stdatomic.c @@ -0,0 +1,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 |