about summary refs log tree commit diff
path: root/stdlib/strtold.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1995-03-16 07:21:33 +0000
committerRoland McGrath <roland@gnu.org>1995-03-16 07:21:33 +0000
commitc45e5aa9a48a5dec6a2c62cbd8be3cda8239c285 (patch)
treef4a4af2e8b5315dc278dae1e5d194c85c37c6762 /stdlib/strtold.c
parentf0bf9cb92c28c9ec0ac3376d87055e9d14610082 (diff)
downloadglibc-c45e5aa9a48a5dec6a2c62cbd8be3cda8239c285.tar.gz
glibc-c45e5aa9a48a5dec6a2c62cbd8be3cda8239c285.tar.xz
glibc-c45e5aa9a48a5dec6a2c62cbd8be3cda8239c285.zip
* stdlib/strtold.c (STRTOF): Set to strtold, not __strtold.
	(strtold): Remove weak alias.
	* stdlib/strtof.c (STRTOF): Set to strtof, not __strtof.
	(strtof): Remove weak alias.
Diffstat (limited to 'stdlib/strtold.c')
-rw-r--r--stdlib/strtold.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/stdlib/strtold.c b/stdlib/strtold.c
index da9bd57f7f..6388cb904d 100644
--- a/stdlib/strtold.c
+++ b/stdlib/strtold.c
@@ -3,11 +3,9 @@
 
 #define	FLOAT		long double
 #define	FLT		LDBL
-#define	STRTOF		__strtold
+#define	STRTOF		strtold
 #define	MPN2FLOAT	__mpn_construct_long_double
 #define	FLOAT_HUGE_VAL	HUGE_VALl
 #define	IMPLICIT_ONE	0	/* XXX for i387 extended format */
 
 #include "strtod.c"
-
-weak_alias (__strtold, strtold)