blob: 06f99146cc72f98209f54c0c3c8e5b389818c2a1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
#define qecvt_r qecvt_r_XXX
#include "nldbl-compat.h"
#undef qecvt_r
int
attribute_hidden
qecvt_r (double val, int ndigit, int *__restrict decpt, int *__restrict sign,
char *__restrict buf, size_t len)
{
return ecvt_r (val, ndigit, decpt, sign, buf, len);
}
|