From 41c1d449f45f992c1dee73b7c8e4b387953884dc Mon Sep 17 00:00:00 2001 From: roland Date: Sat, 11 Feb 1995 18:12:45 +0000 Subject: [PATCH] Initial revision --- stdlib/strtold.c | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 stdlib/strtold.c diff --git a/stdlib/strtold.c b/stdlib/strtold.c new file mode 100644 index 0000000000..6fc13a5770 --- /dev/null +++ b/stdlib/strtold.c @@ -0,0 +1,9 @@ +/* The actual implementation for all floating point sizes is in strtod.c. + These macros tell it to produce the `long double' version, `strtold'. */ + +#define FLOAT long double +#define FLT LDBL +#define STRTOF strtold +#define MPN2FLOAT __mpn_construct_long_double + +#include "strtod.c" -- 2.11.0