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...
This commit is contained in:
Rich Felker
2012-02-06 01:14:23 -05:00
parent 5a09a53010
commit f4ad36c4bf
4 changed files with 55 additions and 0 deletions

View File

@ -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