mirror of
https://sourceware.org/git/glibc.git
synced 2025-08-07 06:43:00 +03:00
Mon Apr 10 14:53:15 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
* stdlib/strtod.c (STRTOF): Use extra macro to make STRTOF's #defn a weak symbol instead of literal "STRTOF". * locale/setlocale.c: Work around ld bug: don't weakify refs to _nl_{current,C}_*.
This commit is contained in:
@@ -1,3 +1,11 @@
|
|||||||
|
Mon Apr 10 14:53:15 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
|
||||||
|
|
||||||
|
* stdlib/strtod.c (STRTOF): Use extra macro to make STRTOF's #defn
|
||||||
|
a weak symbol instead of literal "STRTOF".
|
||||||
|
|
||||||
|
* locale/setlocale.c: Work around ld bug: don't weakify refs to
|
||||||
|
_nl_{current,C}_*.
|
||||||
|
|
||||||
Sun Apr 9 01:24:33 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
|
Sun Apr 9 01:24:33 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
|
||||||
|
|
||||||
* Makerules (+depfiles): Translate %.so to %.o in $(extra-objs).
|
* Makerules (+depfiles): Translate %.so to %.o in $(extra-objs).
|
||||||
|
@@ -33,7 +33,8 @@ Cambridge, MA 02139, USA. */
|
|||||||
#define DEFINE_CATEGORY(category, category_name, items, a, b, c, d) \
|
#define DEFINE_CATEGORY(category, category_name, items, a, b, c, d) \
|
||||||
extern const struct locale_data *_nl_current_##category; \
|
extern const struct locale_data *_nl_current_##category; \
|
||||||
extern const struct locale_data _nl_C_##category; \
|
extern const struct locale_data _nl_C_##category; \
|
||||||
weak_symbol (_nl_current_##category) weak_symbol (_nl_C_##category)
|
/* XXX The linker is broken so we cannot do the weak symbols right just now. */
|
||||||
|
/* weak_symbol (_nl_current_##category) weak_symbol (_nl_C_##category) */
|
||||||
#include "categories.def"
|
#include "categories.def"
|
||||||
#undef DEFINE_CATEGORY
|
#undef DEFINE_CATEGORY
|
||||||
|
|
||||||
|
@@ -1097,7 +1097,8 @@ INTERNAL (STRTOF) (nptr, endptr, group)
|
|||||||
|
|
||||||
/* External user entry point. */
|
/* External user entry point. */
|
||||||
|
|
||||||
weak_symbol (STRTOF)
|
#define weak_this(x) weak_symbol(x)
|
||||||
|
weak_this (STRTOF)
|
||||||
|
|
||||||
FLOAT
|
FLOAT
|
||||||
STRTOF (nptr, endptr)
|
STRTOF (nptr, endptr)
|
||||||
|
Reference in New Issue
Block a user