typedef struct { int counter; } atomic_t;
#define ATOMIC_INIT(i) { (i) }
atomic_t count = ATOMIC_INIT(1)
atomic_t count; count = ATOMIC_INIT(1);
expected expression before ‘{’ token
/**