summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--thread.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/thread.c b/thread.c
index 698ce73..a539dd6 100644
--- a/thread.c
+++ b/thread.c
@@ -78,7 +78,7 @@ static pthread_cond_t init_cond;
static void thread_libevent_process(int fd, short which, void *arg);
-inline unsigned short refcount_incr(unsigned short *refcount) {
+unsigned short refcount_incr(unsigned short *refcount) {
#ifdef HAVE_GCC_ATOMICS
return __sync_add_and_fetch(refcount, 1);
#elif defined(__sun)
@@ -93,7 +93,7 @@ inline unsigned short refcount_incr(unsigned short *refcount) {
#endif
}
-inline unsigned short refcount_decr(unsigned short *refcount) {
+unsigned short refcount_decr(unsigned short *refcount) {
#ifdef HAVE_GCC_ATOMICS
return __sync_sub_and_fetch(refcount, 1);
#elif defined(__sun)