summaryrefslogtreecommitdiff
path: root/ldso/ldso/ld_syscall.h
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-06-14 21:37:48 +0000
committerEric Andersen <andersen@codepoet.org>2001-06-14 21:37:48 +0000
commit862fef6971ef660a985c790e3643187e5ecb855d (patch)
treed70a00b981442842d4bd84bfd456a4f249fb2e5b /ldso/ldso/ld_syscall.h
parent311b479b519b33774b6bb75d5c4961f2e2498fc2 (diff)
Yet more ldso cleanups. Be more discriminating about when using inlines
and when using real functions. Make things be more portable by providing a default C routine to locate the got. -Erik
Diffstat (limited to 'ldso/ldso/ld_syscall.h')
-rw-r--r--ldso/ldso/ld_syscall.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ldso/ldso/ld_syscall.h b/ldso/ldso/ld_syscall.h
index ebc8739ea..28c002cbf 100644
--- a/ldso/ldso/ld_syscall.h
+++ b/ldso/ldso/ld_syscall.h
@@ -99,7 +99,7 @@ static inline _syscall0(gid_t, _dl_getegid);
* Not an actual syscall, but we need something in assembly to say whether
* this is OK or not.
*/
-extern inline int _dl_suid_ok(void)
+static inline int _dl_suid_ok(void)
{
uid_t uid, euid, gid, egid;