summaryrefslogtreecommitdiff
path: root/sysdeps/ieee754/ldbl-opt/nldbl-qfcvt_r.c
blob: 03224fefa967c68349dec6eb3daf90d06f73a0c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
#define qfcvt_r qfcvt_r_XXX
#include "nldbl-compat.h"
#undef qfcvt_r

int
attribute_hidden
qfcvt_r (double val, int ndigit, int *__restrict decpt, int *__restrict sign,
	 char *__restrict buf, size_t len)
{
  return fcvt_r (val, ndigit, decpt, sign, buf, len);
}