diff options
author | Roland McGrath <roland@hack.frob.com> | 2012-02-27 14:00:47 -0800 |
---|---|---|
committer | Roland McGrath <roland@hack.frob.com> | 2012-02-27 14:00:47 -0800 |
commit | 36c8acb4f8383a52ba0f25a99276ebec31f8c281 (patch) | |
tree | 814f5fbb3b8c5d8461f8d5ba1034291ee4d18355 /libio/stdio.h | |
parent | 84ad622bbf4b1c22f68414532f5a8a88557bf9bd (diff) | |
download | glibc-36c8acb4f8383a52ba0f25a99276ebec31f8c281.zip glibc-36c8acb4f8383a52ba0f25a99276ebec31f8c281.tar.gz glibc-36c8acb4f8383a52ba0f25a99276ebec31f8c281.tar.bz2 |
BZ#13775: Fix vdprintf/dprintf ldbl-compat decl feature test conditional.
Diffstat (limited to 'libio/stdio.h')
-rw-r--r-- | libio/stdio.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/libio/stdio.h b/libio/stdio.h index 4c732c4..c69b382 100644 --- a/libio/stdio.h +++ b/libio/stdio.h @@ -408,12 +408,7 @@ extern int asprintf (char **__restrict __ptr, #endif #ifdef __USE_XOPEN2K8 -/* Write formatted output to a file descriptor. - - These functions are not part of POSIX and therefore no official - cancellation point. But due to similarity with an POSIX interface - or due to the implementation they are cancellation points and - therefore not marked with __THROW. */ +/* Write formatted output to a file descriptor. */ extern int vdprintf (int __fd, const char *__restrict __fmt, _G_va_list __arg) __attribute__ ((__format__ (__printf__, 2, 0))); |