aboutsummaryrefslogtreecommitdiff
path: root/src/stdlib/fcvt.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stdlib/fcvt.c')
-rw-r--r--src/stdlib/fcvt.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/stdlib/fcvt.c b/src/stdlib/fcvt.c
index f90928fe..c8885fe8 100644
--- a/src/stdlib/fcvt.c
+++ b/src/stdlib/fcvt.c
@@ -23,3 +23,11 @@ char *fcvt(double x, int n, int *dp, int *sign)
return ecvt(x, n-lz, dp, sign);
}
+
+
+#ifdef TEST
+int
+main(void) {
+ return 0;
+}
+#endif