diff options
author | Chris Robinson <[email protected]> | 2014-07-31 04:44:39 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2014-07-31 04:44:39 -0700 |
commit | cdfc5a4d31d17e156736bb8bdcaf93ea505237ac (patch) | |
tree | 99ce13db3a16e2d092868c13736d24ed4b74bae2 /common | |
parent | ce046d2f03a349d15a5e092d64287df33a79117b (diff) |
Remove an unused function
Diffstat (limited to 'common')
-rw-r--r-- | common/atomic.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/common/atomic.c b/common/atomic.c index 90654628..d78fc60d 100644 --- a/common/atomic.c +++ b/common/atomic.c @@ -11,5 +11,4 @@ extern inline uint DecrementRef(RefCount *ptr); extern inline int ExchangeInt(volatile int *ptr, int newval); extern inline void *ExchangePtr(XchgPtr *ptr, void *newval); -extern inline int CompExchangeInt(volatile int *ptr, int oldval, int newval); extern inline void *CompExchangePtr(XchgPtr *ptr, void *oldval, void *newval); |