blob: b24a997c4c48ff95aa72fb574b1c243c490f33af [file] [log] [blame]
#ifndef _NGX_ATOMIC_H_INCLUDED_
#define _NGX_ATOMIC_H_INCLUDED_
#include <ngx_config.h>
#include <ngx_core.h>
#define ngx_atomic_inc(x) x++;
#define ngx_atomic_dec(x) x--;
#endif /* _NGX_ATOMIC_H_INCLUDED_ */