glibc/sysdeps/ieee754/ldbl-opt/nldbl-strfroml.c
Gabriel F. T. Gomes 6962682ffe Add strfromd, strfromf, and strfroml functions
ISO/IEC TS 18661-1 adds several functions in the strfrom family to stdlib.
This patch adds strfromd, strfromf, and strfroml.  This is being done in
preparation for the new floating-point type, float128.  The added functions
convert a floating-point value into a string, with configurable format.
2016-10-25 17:03:54 -02:00

9 lines
165 B
C

#include "nldbl-compat.h"
int
attribute_hidden
strfroml (char *dest, size_t size, const char *format, long double f)
{
return strfromd (dest, size, format, f);
}