diff options
author | das <das@FreeBSD.org> | 2004-01-18 08:28:47 +0000 |
---|---|---|
committer | das <das@FreeBSD.org> | 2004-01-18 08:28:47 +0000 |
commit | 40c56bf93f71fe397024e0f90bc559fade64b5cf (patch) | |
tree | 997b67c192f8fee89c82cd261347338ae7705212 /lib/libc/stdio/floatio.h | |
parent | aa64e11b02a1050fd3637f3073995d7ffe4025f2 (diff) | |
download | FreeBSD-src-40c56bf93f71fe397024e0f90bc559fade64b5cf.zip FreeBSD-src-40c56bf93f71fe397024e0f90bc559fade64b5cf.tar.gz |
Prototype __hdtoa() and __hldtoa().
Diffstat (limited to 'lib/libc/stdio/floatio.h')
-rw-r--r-- | lib/libc/stdio/floatio.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/libc/stdio/floatio.h b/lib/libc/stdio/floatio.h index 500cda2..2463a85 100644 --- a/lib/libc/stdio/floatio.h +++ b/lib/libc/stdio/floatio.h @@ -53,4 +53,6 @@ #error "floating point buffers too small" #endif +char *__hdtoa(double, const char *, int, int *, int *, char **); +char *__hldtoa(long double, const char *, int, int *, int *, char **); char *__ldtoa(long double *, int, int, int *, int *, char **); |