summaryrefslogtreecommitdiff
path: root/src/stdatomic/atomic_flag_clear_explicit.c
blob: 2c5785304ede9d735a0046f2b30fbce21bb68c3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#if 0

#include <stdatomic.h>

void atomic_flag_clear_explicit(volatile atomic_flag *object, memory_order order)
{
	(void)order;
	*object = 0;
}


#endif

/*
STDC(201112)
*/