diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-06-14 21:37:48 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-06-14 21:37:48 +0000 |
commit | 862fef6971ef660a985c790e3643187e5ecb855d (patch) | |
tree | d70a00b981442842d4bd84bfd456a4f249fb2e5b /ldso/ldso/syscall.h | |
parent | 311b479b519b33774b6bb75d5c4961f2e2498fc2 (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/syscall.h')
-rw-r--r-- | ldso/ldso/syscall.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ldso/ldso/syscall.h b/ldso/ldso/syscall.h index ebc8739ea..28c002cbf 100644 --- a/ldso/ldso/syscall.h +++ b/ldso/ldso/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; |