ae2f_docs
c89atomic.c
1/*
2This file is only needed for the global lock, which is only needed for architectures that
3don't natively support a particular atomic operation. Most applications will not need this,
4but if you get errors about c89atomic_global_lock not being defined, you need to include
5this file in your project.
6*/
7#ifndef c89atomic_c
8#define c89atomic_c
9
10#include "c89atomic.h"
11
12/* BEG c89atomic_global_lock.c */
13c89atomic_spinlock c89atomic_global_lock = 0;
14/* END c89atomic_global_lock.c */
15
16#endif /* c89atomic_h*/