From f4ad36c4bf23899a3164ebd40ff5781c152bcb01 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Mon, 6 Feb 2012 01:14:23 -0500 Subject: 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... --- include/stdlib.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'include/stdlib.h') 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 -- cgit v1.2.1