diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-05-30 20:38:08 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-05-30 20:38:08 +0000 |
commit | 73372af094d8631c004ef9c6804364308c7d6093 (patch) | |
tree | da145b90b9296884734c15e5a86048313595f84a /libc/string | |
parent | 60cb5307b9ae5614f0cbb280e19727e0c719a974 (diff) |
- cannot really guarantee proper order, so play safe and compile the problematic
sources separately for now.
Diffstat (limited to 'libc/string')
-rw-r--r-- | libc/string/Makefile.in | 1 | ||||
-rw-r--r-- | libc/string/__xpg_strerror_r.c | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/libc/string/Makefile.in b/libc/string/Makefile.in index 376316b7e..8931cc81a 100644 --- a/libc/string/Makefile.in +++ b/libc/string/Makefile.in @@ -106,6 +106,7 @@ STRING_COBJ := $(patsubst $(STRING_DIR)/%.c,$(STRING_OUT)/%.o,$(STRING_CSRC)) libc-y += $(STRING_COBJ) libc-nomulti-$(UCLIBC_HAS_XLOCALE) += $(STRING_OUT)/wcsxfrm_l.o +libc-nomulti-y += $(STRING_OUT)/__xpg_strerror_r.o objclean-y += string_objclean diff --git a/libc/string/__xpg_strerror_r.c b/libc/string/__xpg_strerror_r.c index ce186a061..001115261 100644 --- a/libc/string/__xpg_strerror_r.c +++ b/libc/string/__xpg_strerror_r.c @@ -6,7 +6,7 @@ */ /* Make sure we get proper strerror_r() prototype */ -#define strerror_r __moo +#define strerror_r _hidestrerror_r #include <features.h> #include <errno.h> |