From 6d7aed92f2715b3db4472b748fef06f1eaf6b30e Mon Sep 17 00:00:00 2001 From: Bernd Schmidt Date: Wed, 4 Jun 2008 14:02:56 +0000 Subject: This fixes a problem with the move of libc_hidden_proto to string.h. The obsolete functions bcopy, index, etc. are not supposed to be used within uClibc itself. Hence, there is no libc_hidden_def for them, but the previous patch did not just move libc_hidden_protos, it also added new ones for the legacy functions. As a result, programs which use these functions can no longer link with uClibc. This fixes it by removing the unnecessary libc_hidden_protos. I've also removed all inclusions of from uClibc source files: since we define _GNU_SOURCE, it is sufficient to include . We then do not need to duplicate the libc_hidden_proto block in . --- include/string.h | 9 ++------- include/strings.h | 18 +----------------- libc/inet/resolv.c | 1 - libc/inet/rpc/ruserpass.c | 1 - libc/misc/regex/regex.c | 1 - libc/misc/time/time.c | 1 - libc/misc/wchar/wchar.c | 1 - libc/stdlib/realpath.c | 1 - libc/string/ffs.c | 1 - libc/string/strcasecmp.c | 1 - libc/string/strncasecmp.c | 1 - 11 files changed, 3 insertions(+), 33 deletions(-) diff --git a/include/string.h b/include/string.h index cd57de1a5..5c631de52 100644 --- a/include/string.h +++ b/include/string.h @@ -503,13 +503,8 @@ libc_hidden_proto(strerror) libc_hidden_proto(__bzero) #endif #ifdef __USE_BSD -# ifdef __UCLIBC_SUSV3_LEGACY__ -libc_hidden_proto(bcopy) -libc_hidden_proto(bzero) -libc_hidden_proto(bcmp) -libc_hidden_proto(index) -libc_hidden_proto(rindex) -# endif +/* No libc_hidden_proto for bcopy etc., since uClibc doesn't itself use the + legacy functions. */ libc_hidden_proto(ffs) #if 0 /*def __USE_GNU*/ libc_hidden_proto(ffsl) diff --git a/include/strings.h b/include/strings.h index 89349f94d..550f4ab9c 100644 --- a/include/strings.h +++ b/include/strings.h @@ -92,23 +92,7 @@ __END_DECLS #ifdef UCLIBC_INTERNAL -/* In the same order and with the same defines */ -# ifdef __UCLIBC_SUSV3_LEGACY__ -libc_hidden_proto(bcopy) -libc_hidden_proto(bzero) -libc_hidden_proto(bcmp) -libc_hidden_proto(index) -libc_hidden_proto(rindex) -# endif -libc_hidden_proto(ffs) -# if 0 /*def __USE_GNU*/ -libc_hidden_proto(ffsl) -# ifdef __GNUC__ -libc_hidden_proto(ffsll) -# endif -# endif -libc_hidden_proto(strcasecmp) -libc_hidden_proto(strncasecmp) +#error " should not be included from libc." #endif diff --git a/libc/inet/resolv.c b/libc/inet/resolv.c index 7bc46f227..b799b0d81 100644 --- a/libc/inet/resolv.c +++ b/libc/inet/resolv.c @@ -136,7 +136,6 @@ #define __FORCE_GLIBC #include #include -#include #include #include #include diff --git a/libc/inet/rpc/ruserpass.c b/libc/inet/rpc/ruserpass.c index 7a839c3a8..75d68dd91 100644 --- a/libc/inet/rpc/ruserpass.c +++ b/libc/inet/rpc/ruserpass.c @@ -41,7 +41,6 @@ #include #include #include -#include #include /* Experimentally off - libc_hidden_proto(strcat) */ diff --git a/libc/misc/regex/regex.c b/libc/misc/regex/regex.c index db758f215..10229a265 100644 --- a/libc/misc/regex/regex.c +++ b/libc/misc/regex/regex.c @@ -36,7 +36,6 @@ #include #include #include -#include #include #ifdef __UCLIBC_HAS_WCHAR__ #define RE_ENABLE_I18N diff --git a/libc/misc/time/time.c b/libc/misc/time/time.c index 0108e0f61..2d980a068 100644 --- a/libc/misc/time/time.c +++ b/libc/misc/time/time.c @@ -133,7 +133,6 @@ #include #include #include -#include #include #include #include diff --git a/libc/misc/wchar/wchar.c b/libc/misc/wchar/wchar.c index 1550fa576..bfe41af83 100644 --- a/libc/misc/wchar/wchar.c +++ b/libc/misc/wchar/wchar.c @@ -1191,7 +1191,6 @@ typedef struct { #include #include -#include #include #include diff --git a/libc/stdlib/realpath.c b/libc/stdlib/realpath.c index 557d74555..e9eabdfaa 100644 --- a/libc/stdlib/realpath.c +++ b/libc/stdlib/realpath.c @@ -14,7 +14,6 @@ #include #include #include -#include #include /* for PATH_MAX */ #include /* for MAXPATHLEN */ #include diff --git a/libc/string/ffs.c b/libc/string/ffs.c index 0857a3220..f7d94ebf0 100644 --- a/libc/string/ffs.c +++ b/libc/string/ffs.c @@ -8,7 +8,6 @@ /* ffsl,ffsll */ #include "_string.h" -#include /* Experimentally off - libc_hidden_proto(ffs) */ diff --git a/libc/string/strcasecmp.c b/libc/string/strcasecmp.c index 8a7836d82..f9852236b 100644 --- a/libc/string/strcasecmp.c +++ b/libc/string/strcasecmp.c @@ -6,7 +6,6 @@ */ #include "_string.h" -#include #include #include diff --git a/libc/string/strncasecmp.c b/libc/string/strncasecmp.c index ab84be7ba..ed052fa21 100644 --- a/libc/string/strncasecmp.c +++ b/libc/string/strncasecmp.c @@ -6,7 +6,6 @@ */ #include "_string.h" -#include #include #include -- cgit v1.2.3