diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2015-02-26 20:46:11 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2015-02-26 20:46:11 +0100 |
commit | 885d9c24d4c21da941603baf555fc72a3765bbe3 (patch) | |
tree | 3a55c1d10296b5476f635f3a96288cd0da177e9c | |
parent | 69ba9dcaa13bb8bbdc8630265d73298c39945416 (diff) |
use weak to fix f.e. cdrkit static compile. fixes #3
-rw-r--r-- | libc/sysdeps/linux/common/setreuid.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/common/setreuid.c b/libc/sysdeps/linux/common/setreuid.c index a9eea6dc4..583a987c0 100644 --- a/libc/sysdeps/linux/common/setreuid.c +++ b/libc/sysdeps/linux/common/setreuid.c @@ -37,4 +37,4 @@ int setreuid(uid_t ruid, uid_t euid) } #endif -libc_hidden_def(setreuid) +libc_hidden_weak(setreuid) |