diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-11-20 22:11:44 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-11-20 22:11:44 +0000 |
commit | cb97aadebfeba7f5e8f1b85beee5ab10e88c2990 (patch) | |
tree | f5f56f2ef0f3048325419857d0b538135524ff8c /libc/stdlib/setenv.c | |
parent | b133fe1cac9f99b63ea56daf92caa1423b1289d0 (diff) |
Last portion of libc_hidden_proto removal.
Appears to build fine (several .configs tried)
Diffstat (limited to 'libc/stdlib/setenv.c')
-rw-r--r-- | libc/stdlib/setenv.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libc/stdlib/setenv.c b/libc/stdlib/setenv.c index 833bd8fcd..cf10804ec 100644 --- a/libc/stdlib/setenv.c +++ b/libc/stdlib/setenv.c @@ -30,7 +30,7 @@ /* Experimentally off - libc_hidden_proto(strlen) */ /* Experimentally off - libc_hidden_proto(strncmp) */ /* Experimentally off - libc_hidden_proto(strndup) */ -libc_hidden_proto(unsetenv) +/* libc_hidden_proto(unsetenv) */ #include <bits/uClibc_mutex.h> __UCLIBC_MUTEX_STATIC(mylock, PTHREAD_MUTEX_INITIALIZER); @@ -133,14 +133,14 @@ int __add_to_environ (const char *name, const char *value, return rv; } -libc_hidden_proto(setenv) +/* libc_hidden_proto(setenv) */ int setenv (const char *name, const char *value, int replace) { return __add_to_environ (name, value, NULL, replace); } libc_hidden_def(setenv) -libc_hidden_proto(unsetenv) +/* libc_hidden_proto(unsetenv) */ int unsetenv (const char *name) { size_t len; |