aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/c23-stdatomic-1.c
blob: 022be6bcae73b1e2d7af2ab366ce7d31a40baa33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* Test __STDC_VERSION_STDATOMIC_H__ in C23.  */
/* { dg-do preprocess } */
/* { dg-options "-std=c23 -pedantic-errors" } */

#include <stdatomic.h>

#ifndef __STDC_VERSION_STDATOMIC_H__
#error "__STDC_VERSION_STDATOMIC_H__ not defined"
#endif

#if __STDC_VERSION_STDATOMIC_H__ != 202311L
#error "bad value of __STDC_VERSION_STDATOMIC_H__"
#endif