blob: 71bfcec801d723b411da656005ecc7709f7a6947 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
 | #include <stdio.h>
#include <stdlib.h>
#ifdef __UCLIBC_HAS_FLOATS__
#define MAX_NDIGIT 17
char *gcvt (double number, int ndigit, char *buf)
{
    sprintf(buf, "%.*g", (ndigit > MAX_NDIGIT)? MAX_NDIGIT : ndigit, number);
    return buf;
}
#endif
 |