summaryrefslogtreecommitdiffstats
path: root/libc-top-half/musl/src/stdlib/gcvt.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc-top-half/musl/src/stdlib/gcvt.c')
-rw-r--r--libc-top-half/musl/src/stdlib/gcvt.c9
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;
+}