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 /include | |
parent | 5a09a53010046fce204cb5138329f8aace79ab1a (diff) | |
download | musl-f4ad36c4bf23899a3164ebd40ff5781c152bcb01.tar.gz |
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 'include')
-rw-r--r-- | include/stdlib.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/stdlib.h b/include/stdlib.h index 43225dd4..9c8a1182 100644 --- a/include/stdlib.h +++ b/include/stdlib.h @@ -134,6 +134,9 @@ void *valloc (size_t); void *memalign(size_t, size_t); int clearenv(void); int ptsname_r(int, char *, size_t); +char *ecvt(double, int, int *, int *); +char *fcvt(double, int, int *, int *); +char *gcvt(double, int, char *); #endif |