1 #define qfcvt qfcvt_XXX 2 #include "nldbl-compat.h" 3 #undef qfcvt 4 5 attribute_hidden 6 char * qfcvt(double val,int ndigit,int * __restrict decpt,int * __restrict sign)7qfcvt (double val, int ndigit, int *__restrict decpt, int *__restrict sign) 8 { 9 return fcvt (val, ndigit, decpt, sign); 10 } 11