diff options
author | Roland McGrath <roland@gnu.org> | 2006-01-14 08:29:08 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2006-01-14 08:29:08 +0000 |
commit | 7f943f4be2e5911484436d0a97841f0b96252c85 (patch) | |
tree | 5ec895f9e8d133750170e5e2947a6cfa7c22bb87 /libio/libioP.h | |
parent | 9adacd8ac9421781c5c76d6826cc06a3a2eeb426 (diff) | |
download | glibc-7f943f4be2e5911484436d0a97841f0b96252c85.tar.gz glibc-7f943f4be2e5911484436d0a97841f0b96252c85.tar.xz glibc-7f943f4be2e5911484436d0a97841f0b96252c85.zip |
2006-01-14 Jakub Jelinek <jakub@redhat.com>
* libio/libio.h (_IO_vfscanf, _IO_vfprintf): Remove __THROW. (_IO_vfwscanf, _IO_vfwprintf): Likewise. * libio/libioP.h (_IO_vdprintf): Likewise.
Diffstat (limited to 'libio/libioP.h')
-rw-r--r-- | libio/libioP.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libio/libioP.h b/libio/libioP.h index be3b38a2e4..3723d04968 100644 --- a/libio/libioP.h +++ b/libio/libioP.h @@ -1,4 +1,5 @@ -/* Copyright (C) 1993, 1997-2003, 2004, 2005 Free Software Foundation, Inc. +/* Copyright (C) 1993, 1997-2003, 2004, 2005, 2006 + Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -649,7 +650,7 @@ extern void _IO_wstr_finish (_IO_FILE *, int) __THROW; extern int _IO_vasprintf (char **result_ptr, __const char *format, _IO_va_list args) __THROW; -extern int _IO_vdprintf (int d, __const char *format, _IO_va_list arg) __THROW; +extern int _IO_vdprintf (int d, __const char *format, _IO_va_list arg); extern int _IO_vsnprintf (char *string, _IO_size_t maxlen, __const char *format, _IO_va_list args) __THROW; |