diff options
Diffstat (limited to 'libc-top-half/musl/src/stdlib/gcvt.c')
-rw-r--r-- | libc-top-half/musl/src/stdlib/gcvt.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/libc-top-half/musl/src/stdlib/gcvt.c b/libc-top-half/musl/src/stdlib/gcvt.c new file mode 100644 index 0000000..f29bc30 --- /dev/null +++ b/libc-top-half/musl/src/stdlib/gcvt.c @@ -0,0 +1,9 @@ +#define _GNU_SOURCE +#include <stdlib.h> +#include <stdio.h> + +char *gcvt(double x, int n, char *b) +{ + sprintf(b, "%.*g", n, x); + return b; +} |