mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-19 03:20:05 +00:00
4933a099c2
[IMPLICIT_ONE]: New macro, one for IEEE754 formats. * stdlib/strtold.c [IMPLICIT_ONE]: New macro, 0. * stdlib/strtof.c [IMPLICIT_ONE]: New macro, 1. * stdio/vfprintf.c: Correctly notice Z modifier.
14 lines
414 B
C
14 lines
414 B
C
/* 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
|
|
#define FLOAT_HUGE_VAL HUGE_VALl
|
|
#define IMPLICIT_ONE 0 /* XXX for i387 extended format */
|
|
|
|
#include "strtod.c"
|
|
|
|
weak_alias (__strtold, strtold)
|