summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/stdatomic/ATOMIC_BOOL_LOCK_FREE.h4
-rw-r--r--src/stdatomic/ATOMIC_CHAR16_T_LOCK_FREE.h4
-rw-r--r--src/stdatomic/ATOMIC_CHAR32_T_LOCK_FREE.h4
-rw-r--r--src/stdatomic/ATOMIC_CHAR_LOCK_FREE.h4
-rw-r--r--src/stdatomic/ATOMIC_FLAG_INIT.h4
-rw-r--r--src/stdatomic/ATOMIC_INT_LOCK_FREE.h4
-rw-r--r--src/stdatomic/ATOMIC_LLONG_LOCK_FREE.h4
-rw-r--r--src/stdatomic/ATOMIC_LONG_LOCK_FREE.h4
-rw-r--r--src/stdatomic/ATOMIC_POINTER_LOCK_FREE.h4
-rw-r--r--src/stdatomic/ATOMIC_SHORT_LOCK_FREE.h4
-rw-r--r--src/stdatomic/ATOMIC_VAR_INIT.h4
-rw-r--r--src/stdatomic/ATOMIC_WCHAR_T_LOCK_FREE.h4
-rw-r--r--src/stdatomic/atomic_bool.h4
-rw-r--r--src/stdatomic/atomic_char.h4
-rw-r--r--src/stdatomic/atomic_char16_t.h4
-rw-r--r--src/stdatomic/atomic_char32_t.h4
-rw-r--r--src/stdatomic/atomic_compare_exchange_strong.c4
-rw-r--r--src/stdatomic/atomic_compare_exchange_strong_explicit.c4
-rw-r--r--src/stdatomic/atomic_compare_exchange_weak.c4
-rw-r--r--src/stdatomic/atomic_compare_exchange_weak_explicit.c4
-rw-r--r--src/stdatomic/atomic_exchange.c4
-rw-r--r--src/stdatomic/atomic_exchange_explicit.c4
-rw-r--r--src/stdatomic/atomic_fetch_add.c4
-rw-r--r--src/stdatomic/atomic_fetch_add_explicit.c4
-rw-r--r--src/stdatomic/atomic_fetch_and.c4
-rw-r--r--src/stdatomic/atomic_fetch_and_explicit.c4
-rw-r--r--src/stdatomic/atomic_fetch_or.c4
-rw-r--r--src/stdatomic/atomic_fetch_or_explicit.c4
-rw-r--r--src/stdatomic/atomic_fetch_sub.c4
-rw-r--r--src/stdatomic/atomic_fetch_sub_explicit.c4
-rw-r--r--src/stdatomic/atomic_fetch_xor.c4
-rw-r--r--src/stdatomic/atomic_fetch_xor_explicit.c4
-rw-r--r--src/stdatomic/atomic_flag.c4
-rw-r--r--src/stdatomic/atomic_flag_clear.c4
-rw-r--r--src/stdatomic/atomic_flag_clear_explicit.c4
-rw-r--r--src/stdatomic/atomic_flag_test_and_set.c4
-rw-r--r--src/stdatomic/atomic_flag_test_and_set_explicit.c4
-rw-r--r--src/stdatomic/atomic_init.c4
-rw-r--r--src/stdatomic/atomic_int.h4
-rw-r--r--src/stdatomic/atomic_int_fast16_t.h4
-rw-r--r--src/stdatomic/atomic_int_fast32_t.h4
-rw-r--r--src/stdatomic/atomic_int_fast64_t.h4
-rw-r--r--src/stdatomic/atomic_int_fast8_t.h4
-rw-r--r--src/stdatomic/atomic_int_least16_t.h4
-rw-r--r--src/stdatomic/atomic_int_least32_t.h4
-rw-r--r--src/stdatomic/atomic_int_least64_t.h4
-rw-r--r--src/stdatomic/atomic_int_least8_t.h4
-rw-r--r--src/stdatomic/atomic_intmax_t.h4
-rw-r--r--src/stdatomic/atomic_intptr_t.h4
-rw-r--r--src/stdatomic/atomic_is_lock_free.c4
-rw-r--r--src/stdatomic/atomic_llong.h4
-rw-r--r--src/stdatomic/atomic_load.c4
-rw-r--r--src/stdatomic/atomic_load_explicit.c4
-rw-r--r--src/stdatomic/atomic_long.h4
-rw-r--r--src/stdatomic/atomic_ptrdiff_t.h4
-rw-r--r--src/stdatomic/atomic_schar.h4
-rw-r--r--src/stdatomic/atomic_short.h4
-rw-r--r--src/stdatomic/atomic_signal_fence.c4
-rw-r--r--src/stdatomic/atomic_size_t.h4
-rw-r--r--src/stdatomic/atomic_store.c4
-rw-r--r--src/stdatomic/atomic_store_explicit.c4
-rw-r--r--src/stdatomic/atomic_thread_fence.c4
-rw-r--r--src/stdatomic/atomic_uchar.h4
-rw-r--r--src/stdatomic/atomic_uint.h4
-rw-r--r--src/stdatomic/atomic_uint_fast16_t.h4
-rw-r--r--src/stdatomic/atomic_uint_fast32_t.h4
-rw-r--r--src/stdatomic/atomic_uint_fast64_t.h4
-rw-r--r--src/stdatomic/atomic_uint_fast8_t.h4
-rw-r--r--src/stdatomic/atomic_uint_least16_t.h4
-rw-r--r--src/stdatomic/atomic_uint_least32_t.h4
-rw-r--r--src/stdatomic/atomic_uint_least64_t.h4
-rw-r--r--src/stdatomic/atomic_uint_least8_t.h4
-rw-r--r--src/stdatomic/atomic_uintmax_t.h4
-rw-r--r--src/stdatomic/atomic_uintptr_t.h4
-rw-r--r--src/stdatomic/atomic_ullong.h4
-rw-r--r--src/stdatomic/atomic_ulong.h4
-rw-r--r--src/stdatomic/atomic_ushort.h4
-rw-r--r--src/stdatomic/atomic_wchar_t.h4
-rw-r--r--src/stdatomic/kill_dependency.h4
-rw-r--r--src/stdatomic/memory_order.h4
80 files changed, 320 insertions, 0 deletions
diff --git a/src/stdatomic/ATOMIC_BOOL_LOCK_FREE.h b/src/stdatomic/ATOMIC_BOOL_LOCK_FREE.h
index 966534b2..d2e0a7f0 100644
--- a/src/stdatomic/ATOMIC_BOOL_LOCK_FREE.h
+++ b/src/stdatomic/ATOMIC_BOOL_LOCK_FREE.h
@@ -4,3 +4,7 @@
#endif
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/ATOMIC_CHAR16_T_LOCK_FREE.h b/src/stdatomic/ATOMIC_CHAR16_T_LOCK_FREE.h
index 7e651e83..d91036f6 100644
--- a/src/stdatomic/ATOMIC_CHAR16_T_LOCK_FREE.h
+++ b/src/stdatomic/ATOMIC_CHAR16_T_LOCK_FREE.h
@@ -4,3 +4,7 @@
#endif
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/ATOMIC_CHAR32_T_LOCK_FREE.h b/src/stdatomic/ATOMIC_CHAR32_T_LOCK_FREE.h
index 8b338429..3f06c94c 100644
--- a/src/stdatomic/ATOMIC_CHAR32_T_LOCK_FREE.h
+++ b/src/stdatomic/ATOMIC_CHAR32_T_LOCK_FREE.h
@@ -4,3 +4,7 @@
#endif
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/ATOMIC_CHAR_LOCK_FREE.h b/src/stdatomic/ATOMIC_CHAR_LOCK_FREE.h
index 6edf6eac..2000bf14 100644
--- a/src/stdatomic/ATOMIC_CHAR_LOCK_FREE.h
+++ b/src/stdatomic/ATOMIC_CHAR_LOCK_FREE.h
@@ -4,3 +4,7 @@
#endif
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/ATOMIC_FLAG_INIT.h b/src/stdatomic/ATOMIC_FLAG_INIT.h
index 322c3720..8debfc34 100644
--- a/src/stdatomic/ATOMIC_FLAG_INIT.h
+++ b/src/stdatomic/ATOMIC_FLAG_INIT.h
@@ -1 +1,5 @@
#define ATOMIC_FLAG_INIT (0)
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/ATOMIC_INT_LOCK_FREE.h b/src/stdatomic/ATOMIC_INT_LOCK_FREE.h
index 2dc2c968..11bf7bbd 100644
--- a/src/stdatomic/ATOMIC_INT_LOCK_FREE.h
+++ b/src/stdatomic/ATOMIC_INT_LOCK_FREE.h
@@ -4,3 +4,7 @@
#endif
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/ATOMIC_LLONG_LOCK_FREE.h b/src/stdatomic/ATOMIC_LLONG_LOCK_FREE.h
index f5d61400..aaf98ed5 100644
--- a/src/stdatomic/ATOMIC_LLONG_LOCK_FREE.h
+++ b/src/stdatomic/ATOMIC_LLONG_LOCK_FREE.h
@@ -4,3 +4,7 @@
#endif
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/ATOMIC_LONG_LOCK_FREE.h b/src/stdatomic/ATOMIC_LONG_LOCK_FREE.h
index b9493e80..193728cd 100644
--- a/src/stdatomic/ATOMIC_LONG_LOCK_FREE.h
+++ b/src/stdatomic/ATOMIC_LONG_LOCK_FREE.h
@@ -4,3 +4,7 @@
#endif
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/ATOMIC_POINTER_LOCK_FREE.h b/src/stdatomic/ATOMIC_POINTER_LOCK_FREE.h
index 20cbd5df..f1a1eea8 100644
--- a/src/stdatomic/ATOMIC_POINTER_LOCK_FREE.h
+++ b/src/stdatomic/ATOMIC_POINTER_LOCK_FREE.h
@@ -4,3 +4,7 @@
#endif
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/ATOMIC_SHORT_LOCK_FREE.h b/src/stdatomic/ATOMIC_SHORT_LOCK_FREE.h
index b86db863..88025d1b 100644
--- a/src/stdatomic/ATOMIC_SHORT_LOCK_FREE.h
+++ b/src/stdatomic/ATOMIC_SHORT_LOCK_FREE.h
@@ -4,3 +4,7 @@
#endif
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/ATOMIC_VAR_INIT.h b/src/stdatomic/ATOMIC_VAR_INIT.h
index 8159ef69..4a159253 100644
--- a/src/stdatomic/ATOMIC_VAR_INIT.h
+++ b/src/stdatomic/ATOMIC_VAR_INIT.h
@@ -1 +1,5 @@
#define ATOMIC_VAR_INIT(__value) (__value)
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/ATOMIC_WCHAR_T_LOCK_FREE.h b/src/stdatomic/ATOMIC_WCHAR_T_LOCK_FREE.h
index 8b0e3e3b..374b1bdf 100644
--- a/src/stdatomic/ATOMIC_WCHAR_T_LOCK_FREE.h
+++ b/src/stdatomic/ATOMIC_WCHAR_T_LOCK_FREE.h
@@ -4,3 +4,7 @@
#endif
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/atomic_bool.h b/src/stdatomic/atomic_bool.h
index 60c86680..b6234b36 100644
--- a/src/stdatomic/atomic_bool.h
+++ b/src/stdatomic/atomic_bool.h
@@ -4,3 +4,7 @@ typedef _Atomic _Bool atomic_bool;
#endif
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/atomic_char.h b/src/stdatomic/atomic_char.h
index 36b0ca0c..487066e9 100644
--- a/src/stdatomic/atomic_char.h
+++ b/src/stdatomic/atomic_char.h
@@ -4,3 +4,7 @@ typedef _Atomic char atomic_char;
#endif
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/atomic_char16_t.h b/src/stdatomic/atomic_char16_t.h
index 2d6db114..6a276da7 100644
--- a/src/stdatomic/atomic_char16_t.h
+++ b/src/stdatomic/atomic_char16_t.h
@@ -4,3 +4,7 @@ typedef _Atomic char16_t atomic_char16_t;
#endif
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/atomic_char32_t.h b/src/stdatomic/atomic_char32_t.h
index bc414da4..900a8bd2 100644
--- a/src/stdatomic/atomic_char32_t.h
+++ b/src/stdatomic/atomic_char32_t.h
@@ -4,3 +4,7 @@ typedef _Atomic char32_t atomic_char32_t;
#endif
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/atomic_compare_exchange_strong.c b/src/stdatomic/atomic_compare_exchange_strong.c
index ea53fee0..3ee8a119 100644
--- a/src/stdatomic/atomic_compare_exchange_strong.c
+++ b/src/stdatomic/atomic_compare_exchange_strong.c
@@ -16,3 +16,7 @@ _Bool atomic_compare_exchange_strong(volatile __TYPE *object, __BASE *expected,
#endif
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/atomic_compare_exchange_strong_explicit.c b/src/stdatomic/atomic_compare_exchange_strong_explicit.c
index cd973f6c..83b1921c 100644
--- a/src/stdatomic/atomic_compare_exchange_strong_explicit.c
+++ b/src/stdatomic/atomic_compare_exchange_strong_explicit.c
@@ -26,3 +26,7 @@ _Bool atomic_compare_exchange_strong_explicit(volatile __TYPE *object, __BASE *e
#endif
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/atomic_compare_exchange_weak.c b/src/stdatomic/atomic_compare_exchange_weak.c
index 1068a0a2..e1b9c3c7 100644
--- a/src/stdatomic/atomic_compare_exchange_weak.c
+++ b/src/stdatomic/atomic_compare_exchange_weak.c
@@ -16,3 +16,7 @@ _Bool atomic_compare_exchange_weak(volatile __TYPE *object, __BASE *expected, __
#endif
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/atomic_compare_exchange_weak_explicit.c b/src/stdatomic/atomic_compare_exchange_weak_explicit.c
index 7b3fc71b..03215147 100644
--- a/src/stdatomic/atomic_compare_exchange_weak_explicit.c
+++ b/src/stdatomic/atomic_compare_exchange_weak_explicit.c
@@ -26,3 +26,7 @@ _Bool atomic_compare_exchange_weak_explicit(volatile __TYPE *object, __BASE *exp
#endif
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/atomic_exchange.c b/src/stdatomic/atomic_exchange.c
index ccc36265..631c5276 100644
--- a/src/stdatomic/atomic_exchange.c
+++ b/src/stdatomic/atomic_exchange.c
@@ -9,3 +9,7 @@ __BASE atomic_exchange(volatile __TYPE *object, __BASE desired)
#endif
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/atomic_exchange_explicit.c b/src/stdatomic/atomic_exchange_explicit.c
index 956a6bef..223ad0ef 100644
--- a/src/stdatomic/atomic_exchange_explicit.c
+++ b/src/stdatomic/atomic_exchange_explicit.c
@@ -14,3 +14,7 @@ __BASE atomic_exchange_explicit(volatile __TYPE *object, __BASE desired, memory_
#endif
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/atomic_fetch_add.c b/src/stdatomic/atomic_fetch_add.c
index 8c3eb914..327a43b3 100644
--- a/src/stdatomic/atomic_fetch_add.c
+++ b/src/stdatomic/atomic_fetch_add.c
@@ -3,3 +3,7 @@
#endif
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/atomic_fetch_add_explicit.c b/src/stdatomic/atomic_fetch_add_explicit.c
index 8c3eb914..327a43b3 100644
--- a/src/stdatomic/atomic_fetch_add_explicit.c
+++ b/src/stdatomic/atomic_fetch_add_explicit.c
@@ -3,3 +3,7 @@
#endif
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/atomic_fetch_and.c b/src/stdatomic/atomic_fetch_and.c
index 8c3eb914..327a43b3 100644
--- a/src/stdatomic/atomic_fetch_and.c
+++ b/src/stdatomic/atomic_fetch_and.c
@@ -3,3 +3,7 @@
#endif
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/atomic_fetch_and_explicit.c b/src/stdatomic/atomic_fetch_and_explicit.c
index 8c3eb914..327a43b3 100644
--- a/src/stdatomic/atomic_fetch_and_explicit.c
+++ b/src/stdatomic/atomic_fetch_and_explicit.c
@@ -3,3 +3,7 @@
#endif
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/atomic_fetch_or.c b/src/stdatomic/atomic_fetch_or.c
index 8c3eb914..327a43b3 100644
--- a/src/stdatomic/atomic_fetch_or.c
+++ b/src/stdatomic/atomic_fetch_or.c
@@ -3,3 +3,7 @@
#endif
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/atomic_fetch_or_explicit.c b/src/stdatomic/atomic_fetch_or_explicit.c
index 8c3eb914..327a43b3 100644
--- a/src/stdatomic/atomic_fetch_or_explicit.c
+++ b/src/stdatomic/atomic_fetch_or_explicit.c
@@ -3,3 +3,7 @@
#endif
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/atomic_fetch_sub.c b/src/stdatomic/atomic_fetch_sub.c
index 8c3eb914..327a43b3 100644
--- a/src/stdatomic/atomic_fetch_sub.c
+++ b/src/stdatomic/atomic_fetch_sub.c
@@ -3,3 +3,7 @@
#endif
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/atomic_fetch_sub_explicit.c b/src/stdatomic/atomic_fetch_sub_explicit.c
index 8c3eb914..327a43b3 100644
--- a/src/stdatomic/atomic_fetch_sub_explicit.c
+++ b/src/stdatomic/atomic_fetch_sub_explicit.c
@@ -3,3 +3,7 @@
#endif
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/atomic_fetch_xor.c b/src/stdatomic/atomic_fetch_xor.c
index 8c3eb914..327a43b3 100644
--- a/src/stdatomic/atomic_fetch_xor.c
+++ b/src/stdatomic/atomic_fetch_xor.c
@@ -3,3 +3,7 @@
#endif
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/atomic_fetch_xor_explicit.c b/src/stdatomic/atomic_fetch_xor_explicit.c
index 8c3eb914..327a43b3 100644
--- a/src/stdatomic/atomic_fetch_xor_explicit.c
+++ b/src/stdatomic/atomic_fetch_xor_explicit.c
@@ -3,3 +3,7 @@
#endif
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/atomic_flag.c b/src/stdatomic/atomic_flag.c
index a48580a1..20f22d55 100644
--- a/src/stdatomic/atomic_flag.c
+++ b/src/stdatomic/atomic_flag.c
@@ -5,3 +5,7 @@ typedef _Atomic _Bool
#endif
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/atomic_flag_clear.c b/src/stdatomic/atomic_flag_clear.c
index b59b4334..d664796a 100644
--- a/src/stdatomic/atomic_flag_clear.c
+++ b/src/stdatomic/atomic_flag_clear.c
@@ -9,3 +9,7 @@ void atomic_flag_clear(volatile atomic_flag *object)
#endif
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/atomic_flag_clear_explicit.c b/src/stdatomic/atomic_flag_clear_explicit.c
index 966487e7..2c578530 100644
--- a/src/stdatomic/atomic_flag_clear_explicit.c
+++ b/src/stdatomic/atomic_flag_clear_explicit.c
@@ -10,3 +10,7 @@ void atomic_flag_clear_explicit(volatile atomic_flag *object, memory_order order
#endif
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/atomic_flag_test_and_set.c b/src/stdatomic/atomic_flag_test_and_set.c
index 345e280f..b107d68c 100644
--- a/src/stdatomic/atomic_flag_test_and_set.c
+++ b/src/stdatomic/atomic_flag_test_and_set.c
@@ -11,3 +11,7 @@ _Bool atomic_flag_test_and_set(volatile atomic_flag *object)
#endif
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/atomic_flag_test_and_set_explicit.c b/src/stdatomic/atomic_flag_test_and_set_explicit.c
index 4ff4335a..07703f37 100644
--- a/src/stdatomic/atomic_flag_test_and_set_explicit.c
+++ b/src/stdatomic/atomic_flag_test_and_set_explicit.c
@@ -12,3 +12,7 @@ _Bool atomic_flag_test_and_set_explicit(volatile atomic_flag *object, memory_ord
#endif
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/atomic_init.c b/src/stdatomic/atomic_init.c
index a2de9aa1..6ef849e0 100644
--- a/src/stdatomic/atomic_init.c
+++ b/src/stdatomic/atomic_init.c
@@ -9,3 +9,7 @@ void atomic_init(volatile __TYPE *obj, __BASE value)
#endif
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/atomic_int.h b/src/stdatomic/atomic_int.h
index 31508356..6440c4f0 100644
--- a/src/stdatomic/atomic_int.h
+++ b/src/stdatomic/atomic_int.h
@@ -4,3 +4,7 @@ typedef _Atomic int atomic_int;
#endif
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/atomic_int_fast16_t.h b/src/stdatomic/atomic_int_fast16_t.h
index 4f88eb3d..1c9cc9f5 100644
--- a/src/stdatomic/atomic_int_fast16_t.h
+++ b/src/stdatomic/atomic_int_fast16_t.h
@@ -4,3 +4,7 @@ typedef _Atomic int_fast16_t atomic_int_fast16_t;
#endif
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/atomic_int_fast32_t.h b/src/stdatomic/atomic_int_fast32_t.h
index bf0d3d91..17be601c 100644
--- a/src/stdatomic/atomic_int_fast32_t.h
+++ b/src/stdatomic/atomic_int_fast32_t.h
@@ -4,3 +4,7 @@ typedef _Atomic int_fast32_t atomic_int_fast32_t;
#endif
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/atomic_int_fast64_t.h b/src/stdatomic/atomic_int_fast64_t.h
index d54a128c..411d3c13 100644
--- a/src/stdatomic/atomic_int_fast64_t.h
+++ b/src/stdatomic/atomic_int_fast64_t.h
@@ -4,3 +4,7 @@ typedef _Atomic int_fast64_t atomic_int_fast64_t;
#endif
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/atomic_int_fast8_t.h b/src/stdatomic/atomic_int_fast8_t.h
index f25e7dda..593bc16e 100644
--- a/src/stdatomic/atomic_int_fast8_t.h
+++ b/src/stdatomic/atomic_int_fast8_t.h
@@ -4,3 +4,7 @@ typedef _Atomic int_fast8_t atomic_int_fast8_t;
#endif
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/atomic_int_least16_t.h b/src/stdatomic/atomic_int_least16_t.h
index 8302d0d0..15a947e5 100644
--- a/src/stdatomic/atomic_int_least16_t.h
+++ b/src/stdatomic/atomic_int_least16_t.h
@@ -4,3 +4,7 @@ typedef _Atomic int_least16_t atomic_int_least16_t;
#endif
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/atomic_int_least32_t.h b/src/stdatomic/atomic_int_least32_t.h
index 84fe5837..e0c3aa83 100644
--- a/src/stdatomic/atomic_int_least32_t.h
+++ b/src/stdatomic/atomic_int_least32_t.h
@@ -4,3 +4,7 @@ typedef _Atomic int_least32_t atomic_int_least32_t;
#endif
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/atomic_int_least64_t.h b/src/stdatomic/atomic_int_least64_t.h
index 37a81c7a..46f7478e 100644
--- a/src/stdatomic/atomic_int_least64_t.h
+++ b/src/stdatomic/atomic_int_least64_t.h
@@ -4,3 +4,7 @@ typedef _Atomic int_least64_t atomic_int_least64_t;
#endif
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/atomic_int_least8_t.h b/src/stdatomic/atomic_int_least8_t.h
index 551adecc..0647825e 100644
--- a/src/stdatomic/atomic_int_least8_t.h
+++ b/src/stdatomic/atomic_int_least8_t.h
@@ -4,3 +4,7 @@ typedef _Atomic int_least8_t atomic_int_least8_t;
#endif
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/atomic_intmax_t.h b/src/stdatomic/atomic_intmax_t.h
index 329a8577..86de8bf6 100644
--- a/src/stdatomic/atomic_intmax_t.h
+++ b/src/stdatomic/atomic_intmax_t.h
@@ -4,3 +4,7 @@ typedef _Atomic intmax_t atomic_intmax_t;
#endif
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/atomic_intptr_t.h b/src/stdatomic/atomic_intptr_t.h
index 9c611640..55babdd4 100644
--- a/src/stdatomic/atomic_intptr_t.h
+++ b/src/stdatomic/atomic_intptr_t.h
@@ -4,3 +4,7 @@ typedef _Atomic intptr_t atomic_intptr_t;
#endif
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/atomic_is_lock_free.c b/src/stdatomic/atomic_is_lock_free.c
index 5d15cc8d..49c4a810 100644
--- a/src/stdatomic/atomic_is_lock_free.c
+++ b/src/stdatomic/atomic_is_lock_free.c
@@ -11,3 +11,7 @@ _Bool atomic_is_lock_free(const volatile __TYPE *obj)
#endif
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/atomic_llong.h b/src/stdatomic/atomic_llong.h
index 6c7eaf0f..aafbdaec 100644
--- a/src/stdatomic/atomic_llong.h
+++ b/src/stdatomic/atomic_llong.h
@@ -4,3 +4,7 @@ typedef _Atomic llong atomic_llong;
#endif
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/atomic_load.c b/src/stdatomic/atomic_load.c
index b42a0480..ac7e9716 100644
--- a/src/stdatomic/atomic_load.c
+++ b/src/stdatomic/atomic_load.c
@@ -9,3 +9,7 @@ __BASE atomic_store(const volatile __TYPE *object)
#endif
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/atomic_load_explicit.c b/src/stdatomic/atomic_load_explicit.c
index 91646adf..9ff16704 100644
--- a/src/stdatomic/atomic_load_explicit.c
+++ b/src/stdatomic/atomic_load_explicit.c
@@ -20,3 +20,7 @@ __BASE atomic_load_explicit(const volatile __TYPE *object, memory_order order)
#endif
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/atomic_long.h b/src/stdatomic/atomic_long.h
index 36ed0a76..2df3d080 100644
--- a/src/stdatomic/atomic_long.h
+++ b/src/stdatomic/atomic_long.h
@@ -4,3 +4,7 @@ typedef _Atomic long atomic_long;
#endif
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/atomic_ptrdiff_t.h b/src/stdatomic/atomic_ptrdiff_t.h
index ae9bd452..b737dcf8 100644
--- a/src/stdatomic/atomic_ptrdiff_t.h
+++ b/src/stdatomic/atomic_ptrdiff_t.h
@@ -4,3 +4,7 @@ typedef _Atomic ptrdiff_t atomic_ptrdiff_t;
#endif
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/atomic_schar.h b/src/stdatomic/atomic_schar.h
index d4f86772..35c22ad6 100644
--- a/src/stdatomic/atomic_schar.h
+++ b/src/stdatomic/atomic_schar.h
@@ -4,3 +4,7 @@ typedef _Atomic signed char atomic_schar;
#endif
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/atomic_short.h b/src/stdatomic/atomic_short.h
index 570bd805..23d829ef 100644
--- a/src/stdatomic/atomic_short.h
+++ b/src/stdatomic/atomic_short.h
@@ -4,3 +4,7 @@ typedef _Atomic short atomic_short;
#endif
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/atomic_signal_fence.c b/src/stdatomic/atomic_signal_fence.c
index acee1c05..fa3f04cd 100644
--- a/src/stdatomic/atomic_signal_fence.c
+++ b/src/stdatomic/atomic_signal_fence.c
@@ -29,3 +29,7 @@ void atomic_signal_fence(memory_order order)
#endif
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/atomic_size_t.h b/src/stdatomic/atomic_size_t.h
index 22878df0..912f1a43 100644
--- a/src/stdatomic/atomic_size_t.h
+++ b/src/stdatomic/atomic_size_t.h
@@ -4,3 +4,7 @@ typedef _Atomic size_t atomic_size_t;
#endif
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/atomic_store.c b/src/stdatomic/atomic_store.c
index 19bb9e6e..d7187813 100644
--- a/src/stdatomic/atomic_store.c
+++ b/src/stdatomic/atomic_store.c
@@ -9,3 +9,7 @@ void atomic_store(volatile __TYPE *object, __BASE desired)
#endif
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/atomic_store_explicit.c b/src/stdatomic/atomic_store_explicit.c
index a57f473d..34fb3ce7 100644
--- a/src/stdatomic/atomic_store_explicit.c
+++ b/src/stdatomic/atomic_store_explicit.c
@@ -20,3 +20,7 @@ void atomic_store_explicit(volatile __TYPE *object, __BASE desired, memory_order
#endif
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/atomic_thread_fence.c b/src/stdatomic/atomic_thread_fence.c
index 6b70d91e..0395db75 100644
--- a/src/stdatomic/atomic_thread_fence.c
+++ b/src/stdatomic/atomic_thread_fence.c
@@ -29,3 +29,7 @@ void atomic_thread_fence(memory_order order)
#endif
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/atomic_uchar.h b/src/stdatomic/atomic_uchar.h
index 18d3a674..96ce644b 100644
--- a/src/stdatomic/atomic_uchar.h
+++ b/src/stdatomic/atomic_uchar.h
@@ -4,3 +4,7 @@ typedef _Atomic unsigned char atomic_uchar;
#endif
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/atomic_uint.h b/src/stdatomic/atomic_uint.h
index fa26228f..055d5db7 100644
--- a/src/stdatomic/atomic_uint.h
+++ b/src/stdatomic/atomic_uint.h
@@ -4,3 +4,7 @@ typedef _Atomic unsigned int atomic_uint;
#endif
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/atomic_uint_fast16_t.h b/src/stdatomic/atomic_uint_fast16_t.h
index 6a6e2e2b..2b480ef9 100644
--- a/src/stdatomic/atomic_uint_fast16_t.h
+++ b/src/stdatomic/atomic_uint_fast16_t.h
@@ -4,3 +4,7 @@ typedef _Atomic uint_fast16_t atomic_uint_fast16_t;
#endif
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/atomic_uint_fast32_t.h b/src/stdatomic/atomic_uint_fast32_t.h
index 2ca3b742..d173b201 100644
--- a/src/stdatomic/atomic_uint_fast32_t.h
+++ b/src/stdatomic/atomic_uint_fast32_t.h
@@ -4,3 +4,7 @@ typedef _Atomic uint_fast32_t atomic_uint_fast32_t;
#endif
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/atomic_uint_fast64_t.h b/src/stdatomic/atomic_uint_fast64_t.h
index 5fefe1c0..1d11d933 100644
--- a/src/stdatomic/atomic_uint_fast64_t.h
+++ b/src/stdatomic/atomic_uint_fast64_t.h
@@ -4,3 +4,7 @@ typedef _Atomic uint_fast64_t atomic_uint_fast64_t;
#endif
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/atomic_uint_fast8_t.h b/src/stdatomic/atomic_uint_fast8_t.h
index f9d97f86..1ed09f70 100644
--- a/src/stdatomic/atomic_uint_fast8_t.h
+++ b/src/stdatomic/atomic_uint_fast8_t.h
@@ -4,3 +4,7 @@ typedef _Atomic uint_fast8_t atomic_uint_fast8_t;
#endif
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/atomic_uint_least16_t.h b/src/stdatomic/atomic_uint_least16_t.h
index f4ad7591..4df5f7ac 100644
--- a/src/stdatomic/atomic_uint_least16_t.h
+++ b/src/stdatomic/atomic_uint_least16_t.h
@@ -4,3 +4,7 @@ typedef _Atomic uint_least16_t atomic_uint_least16_t;
#endif
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/atomic_uint_least32_t.h b/src/stdatomic/atomic_uint_least32_t.h
index 61d95348..04da487e 100644
--- a/src/stdatomic/atomic_uint_least32_t.h
+++ b/src/stdatomic/atomic_uint_least32_t.h
@@ -4,3 +4,7 @@ typedef _Atomic uint_least32_t atomic_uint_least32_t;
#endif
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/atomic_uint_least64_t.h b/src/stdatomic/atomic_uint_least64_t.h
index aa8d3c26..09655046 100644
--- a/src/stdatomic/atomic_uint_least64_t.h
+++ b/src/stdatomic/atomic_uint_least64_t.h
@@ -4,3 +4,7 @@ typedef _Atomic uint_least64_t atomic_uint_least64_t;
#endif
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/atomic_uint_least8_t.h b/src/stdatomic/atomic_uint_least8_t.h
index 469780d2..76a5a041 100644
--- a/src/stdatomic/atomic_uint_least8_t.h
+++ b/src/stdatomic/atomic_uint_least8_t.h
@@ -4,3 +4,7 @@ typedef _Atomic uint_least8_t atomic_uint_least8_t;
#endif
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/atomic_uintmax_t.h b/src/stdatomic/atomic_uintmax_t.h
index 8bfb8441..ffad64c7 100644
--- a/src/stdatomic/atomic_uintmax_t.h
+++ b/src/stdatomic/atomic_uintmax_t.h
@@ -4,3 +4,7 @@ typedef _Atomic uintmax_t atomic_uintmax_t;
#endif
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/atomic_uintptr_t.h b/src/stdatomic/atomic_uintptr_t.h
index c51e8b85..f023974f 100644
--- a/src/stdatomic/atomic_uintptr_t.h
+++ b/src/stdatomic/atomic_uintptr_t.h
@@ -4,3 +4,7 @@ typedef _Atomic uintptr_t atomic_uintptr_t;
#endif
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/atomic_ullong.h b/src/stdatomic/atomic_ullong.h
index 20603e0b..23ced12f 100644
--- a/src/stdatomic/atomic_ullong.h
+++ b/src/stdatomic/atomic_ullong.h
@@ -4,3 +4,7 @@ typedef _Atomic unsigned long long atomic_ullong;
#endif
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/atomic_ulong.h b/src/stdatomic/atomic_ulong.h
index e971d4bb..e117b2b1 100644
--- a/src/stdatomic/atomic_ulong.h
+++ b/src/stdatomic/atomic_ulong.h
@@ -4,3 +4,7 @@ typedef _Atomic unsigned long atomic_ulong;
#endif
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/atomic_ushort.h b/src/stdatomic/atomic_ushort.h
index 680680ff..8272e92d 100644
--- a/src/stdatomic/atomic_ushort.h
+++ b/src/stdatomic/atomic_ushort.h
@@ -4,3 +4,7 @@ typedef _Atomic unsigned short atomic_ushort;
#endif
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/atomic_wchar_t.h b/src/stdatomic/atomic_wchar_t.h
index abd42f48..7d900191 100644
--- a/src/stdatomic/atomic_wchar_t.h
+++ b/src/stdatomic/atomic_wchar_t.h
@@ -4,3 +4,7 @@ typedef _Atomic wchar_t atomic_wchar_t;
#endif
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/kill_dependency.h b/src/stdatomic/kill_dependency.h
index 83b9129b..3fc4edf4 100644
--- a/src/stdatomic/kill_dependency.h
+++ b/src/stdatomic/kill_dependency.h
@@ -1 +1,5 @@
#define kill_dependency(__y) (__y)
+
+/*
+STDC(201112)
+*/
diff --git a/src/stdatomic/memory_order.h b/src/stdatomic/memory_order.h
index 0f338d79..37d0050e 100644
--- a/src/stdatomic/memory_order.h
+++ b/src/stdatomic/memory_order.h
@@ -6,3 +6,7 @@ typedef enum {
memory_order_acq_rel,
memory_order_seq_cst,
} memory_order;
+
+/*
+STDC(201112)
+*/