diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2002-12-02 15:38:55 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2002-12-02 15:38:55 +0000 |
commit | 33c188b76620f828c912e46172c411bc74a786e8 (patch) | |
tree | 565987774725768e1a31c730a6bcda835bde683b /include/stdlib.h | |
parent | 4c1511c3196e9f94a02bdaaf356ea65963abe06f (diff) |
Add ecvt(), fcvt() and gcvt() for standard compliance and legacy code.
Diffstat (limited to 'include/stdlib.h')
-rw-r--r-- | include/stdlib.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/stdlib.h b/include/stdlib.h index 91e55cbd749..0d8ef3c2633 100644 --- a/include/stdlib.h +++ b/include/stdlib.h @@ -1,4 +1,4 @@ -/* $OpenBSD: stdlib.h,v 1.22 2002/12/02 02:07:28 millert Exp $ */ +/* $OpenBSD: stdlib.h,v 1.23 2002/12/02 15:38:54 millert Exp $ */ /* $NetBSD: stdlib.h,v 1.25 1995/12/27 21:19:08 jtc Exp $ */ /*- @@ -113,8 +113,11 @@ void *bsearch(const void *, const void *, size_t, size_t, int (*)(const void *, const void *)); void *calloc(size_t, size_t); div_t div(int, int); +char *ecvt(double, int, int *, int *); __dead void exit(int); +char *fcvt(double, int, int *, int *); void free(void *); +char *gcvt(double, int, char *); char *getenv(const char *); long labs(long); ldiv_t ldiv(long, long); |