diff options
author | Rich Felker <dalias@aerifal.cx> | 2012-02-06 01:14:23 -0500 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2012-02-06 01:14:23 -0500 |
commit | f4ad36c4bf23899a3164ebd40ff5781c152bcb01 (patch) | |
tree | b1d9a18eac66966fe7718d6cf82b4da83f99b1a0 /src/stdlib/gcvt.c | |
parent | 5a09a53010046fce204cb5138329f8aace79ab1a (diff) | |
download | musl-f4ad36c4bf23899a3164ebd40ff5781c152bcb01.tar.gz musl-f4ad36c4bf23899a3164ebd40ff5781c152bcb01.tar.bz2 musl-f4ad36c4bf23899a3164ebd40ff5781c152bcb01.tar.xz musl-f4ad36c4bf23899a3164ebd40ff5781c152bcb01.zip |
add deprecated (removed from posix) [efg]cvt() functions
these have not been heavily tested, but they should work as described
in the old standards. probably broken for non-finite values...
Diffstat (limited to 'src/stdlib/gcvt.c')
-rw-r--r-- | src/stdlib/gcvt.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/stdlib/gcvt.c b/src/stdlib/gcvt.c new file mode 100644 index 00000000..6c075e25 --- /dev/null +++ b/src/stdlib/gcvt.c @@ -0,0 +1,8 @@ +#include <stdlib.h> +#include <stdio.h> + +char *gcvt(double x, int n, char *b) +{ + sprintf(b, "%.*g", n, x); + return b; +} |