mirror of
git://sourceware.org/git/glibc.git
synced 2025-01-06 12:00:24 +08:00
11 lines
210 B
C
11 lines
210 B
C
#define qfcvt qfcvt_XXX
|
|
#include "nldbl-compat.h"
|
|
#undef qfcvt
|
|
|
|
attribute_hidden
|
|
char *
|
|
qfcvt (double val, int ndigit, int *__restrict decpt, int *__restrict sign)
|
|
{
|
|
return fcvt (val, ndigit, decpt, sign);
|
|
}
|