summaryrefslogtreecommitdiff
path: root/locale/setlocale.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2002-08-28 11:08:46 +0000
committerRoland McGrath <roland@gnu.org>2002-08-28 11:08:46 +0000
commit27abf7a3239c71af0151d33b3b85141305c370bf (patch)
treeb6454b09a6f7b6e029d561b317ce7c8375c9510d /locale/setlocale.c
parent6c0b461a580a1547e20bd8885e8bbf67339bac6d (diff)
* Makeconfig (run-program-prefix): Fix bogus use of $(findstring ...)
to use $(filter ...) instead. Same bug fixed in aix conditionals. * locale/setlocale.c: Declare postload functions weak.
Diffstat (limited to 'locale/setlocale.c')
-rw-r--r--locale/setlocale.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/locale/setlocale.c b/locale/setlocale.c
index 296903f24c..1944336004 100644
--- a/locale/setlocale.c
+++ b/locale/setlocale.c
@@ -90,7 +90,7 @@ const size_t _nl_category_name_sizes[] =
#undef NO_POSTLOAD
#define NO_POSTLOAD _nl_postload_ctype /* Harmless thing known to exist. */
#define DEFINE_CATEGORY(category, category_name, items, postload) \
-extern void postload (void);
+extern void postload (void); weak_extern (postload)
#include "categories.def"
#undef DEFINE_CATEGORY
#undef NO_POSTLOAD