]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
2006-01-14 Jakub Jelinek <jakub@redhat.com>
authorRoland McGrath <roland@gnu.org>
Sat, 14 Jan 2006 08:29:08 +0000 (08:29 +0000)
committerRoland McGrath <roland@gnu.org>
Sat, 14 Jan 2006 08:29:08 +0000 (08:29 +0000)
* libio/libio.h (_IO_vfscanf, _IO_vfprintf): Remove __THROW.
(_IO_vfwscanf, _IO_vfwprintf): Likewise.
* libio/libioP.h (_IO_vdprintf): Likewise.

libio/libio.h
libio/libioP.h

index f6aed4fe00eac4160e7a70caa152d18707a006f1..36d1b3cd34091b7153fa678db854eb609e1f19c0 100644 (file)
@@ -478,9 +478,9 @@ extern int _IO_ftrylockfile (_IO_FILE *) __THROW;
 #endif /* !_IO_MTSAFE_IO */
 
 extern int _IO_vfscanf (_IO_FILE * __restrict, const char * __restrict,
-                       _IO_va_list, int *__restrict) __THROW;
+                       _IO_va_list, int *__restrict);
 extern int _IO_vfprintf (_IO_FILE *__restrict, const char *__restrict,
-                        _IO_va_list) __THROW;
+                        _IO_va_list);
 extern _IO_ssize_t _IO_padn (_IO_FILE *, int, _IO_ssize_t) __THROW;
 extern _IO_size_t _IO_sgetn (_IO_FILE *, void *, _IO_size_t) __THROW;
 
@@ -527,9 +527,9 @@ weak_extern (_IO_stdin_used);
 # endif
 
 extern int _IO_vfwscanf (_IO_FILE * __restrict, const wchar_t * __restrict,
-                        _IO_va_list, int *__restrict) __THROW;
+                        _IO_va_list, int *__restrict);
 extern int _IO_vfwprintf (_IO_FILE *__restrict, const wchar_t *__restrict,
-                         _IO_va_list) __THROW;
+                         _IO_va_list);
 extern _IO_ssize_t _IO_wpadn (_IO_FILE *, wint_t, _IO_ssize_t) __THROW;
 extern void _IO_free_wbackup_area (_IO_FILE *) __THROW;
 #endif
index be3b38a2e4a5fea9bdc3df8d59eb01cfa6050b96..3723d04968ad4ca19bfd813c39287f6a0bfa2a16 100644 (file)
@@ -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;