summaryrefslogtreecommitdiffstats
path: root/libexec
diff options
context:
space:
mode:
authorstefanf <stefanf@FreeBSD.org>2004-07-04 16:11:03 +0000
committerstefanf <stefanf@FreeBSD.org>2004-07-04 16:11:03 +0000
commit9dea8aeba1c4f733fc95d1dfd11cfc8d3092a654 (patch)
tree0e3fe3a61275cb24fb693e8710ebc6420adf5306 /libexec
parentc8bc9c77afa1fbbf704376606a236020afdfba8e (diff)
downloadFreeBSD-src-9dea8aeba1c4f733fc95d1dfd11cfc8d3092a654.zip
FreeBSD-src-9dea8aeba1c4f733fc95d1dfd11cfc8d3092a654.tar.gz
Consistently use __inline instead of __inline__ as the former is an empty macro
in <sys/cdefs.h> for compilers without support for inline.
Diffstat (limited to 'libexec')
-rw-r--r--libexec/rtld-elf/rtld_lock.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libexec/rtld-elf/rtld_lock.c b/libexec/rtld-elf/rtld_lock.c
index bdee690..77b16f6 100644
--- a/libexec/rtld-elf/rtld_lock.c
+++ b/libexec/rtld-elf/rtld_lock.c
@@ -169,13 +169,13 @@ def_thread_clr_flag(int mask)
static struct RtldLockInfo lockinfo;
static struct RtldLockInfo deflockinfo;
-static __inline__ int
+static __inline int
thread_mask_set(int mask)
{
return lockinfo.thread_set_flag(mask);
}
-static __inline__ void
+static __inline void
thread_mask_clear(int mask)
{
lockinfo.thread_clr_flag(mask);
OpenPOWER on IntegriCloud