diff options
author | Roland McGrath <roland@gnu.org> | 2006-01-14 21:15:05 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2006-01-14 21:15:05 +0000 |
commit | 8c22dca38f19cd8f2c9688f756b0758aa7244f9e (patch) | |
tree | d694a3f611cc2f98e180197e4eccf63e07ebe5b5 /sysdeps | |
parent | 54e98f69e0e36ea8ad4e7a32b798ae90270bc1e0 (diff) | |
download | glibc-8c22dca38f19cd8f2c9688f756b0758aa7244f9e.tar.gz glibc-8c22dca38f19cd8f2c9688f756b0758aa7244f9e.tar.xz glibc-8c22dca38f19cd8f2c9688f756b0758aa7244f9e.zip |
(__nldbl___vstrfmon, __nldbl___vsyslog_chk): Restore missing decls.
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/ieee754/ldbl-opt/nldbl-compat.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/sysdeps/ieee754/ldbl-opt/nldbl-compat.h b/sysdeps/ieee754/ldbl-opt/nldbl-compat.h index cdedaaf0ef..985e109906 100644 --- a/sysdeps/ieee754/ldbl-opt/nldbl-compat.h +++ b/sysdeps/ieee754/ldbl-opt/nldbl-compat.h @@ -63,9 +63,13 @@ NLDBL_DECL (vsyslog); NLDBL_DECL (qecvt); NLDBL_DECL (qfcvt); NLDBL_DECL (qgcvt); -NLDBL_DECL (__vstrfmon); NLDBL_DECL (__vstrfmon_l); +/* This one does not exist in the normal interface, only + __nldbl___vstrfmon really exists. */ +extern ssize_t __nldbl___vstrfmon (char *, size_t, const char *, va_list) + __THROW; + /* These don't use __typeof because they were not declared by the headers, since we don't compile with _FORTIFY_SOURCE. */ extern int __nldbl___vfprintf_chk (FILE *__restrict, int, @@ -80,6 +84,7 @@ extern int __nldbl___vsnprintf_chk (char *__restrict, size_t, int, size_t, extern int __nldbl___vswprintf_chk (wchar_t *__restrict, size_t, int, size_t, const wchar_t *__restrict, __gnuc_va_list) __THROW; +extern void __nldbl___vsyslog_chk (int, int, const char *, va_list); #endif /* __NLDBL_COMPAT_H */ |