diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2005-12-03 00:34:49 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2005-12-03 00:34:49 +0000 |
commit | c885bf5cf94a12202f849477a845d728cbd12889 (patch) | |
tree | 106e36d57ea684166ebde05a8d4be54664e0e6ce /libc/stdlib/getenv.c | |
parent | ca3067b8cec6e7ffd600c92510197df5aedd8606 (diff) |
More hiding, including __mempcpy
Diffstat (limited to 'libc/stdlib/getenv.c')
-rw-r--r-- | libc/stdlib/getenv.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libc/stdlib/getenv.c b/libc/stdlib/getenv.c index 9dfc0d132..6cbdc3e65 100644 --- a/libc/stdlib/getenv.c +++ b/libc/stdlib/getenv.c @@ -22,7 +22,7 @@ /* IEEE Std 1003.1-2001 says getenv need not be thread safe, so * don't bother locking access to __environ */ -char *getenv(const char *var) +char attribute_hidden *__getenv(const char *var) { int len; char **ep; @@ -39,3 +39,4 @@ char *getenv(const char *var) return NULL; } +strong_alias(__getenv,getenv) |