Update.
authorUlrich Drepper <drepper@redhat.com>
Sat, 30 Aug 2003 09:32:23 +0000 (09:32 +0000)
committerUlrich Drepper <drepper@redhat.com>
Sat, 30 Aug 2003 09:32:23 +0000 (09:32 +0000)
* misc/sys/syslog.h (vsyslog): Remove __THROW.

* posix/unistd.h: Remove __THROW from getpass prototype.

ChangeLog
misc/sys/syslog.h

index 9f41fa5a46fce7384761164ed43f2b6cdb098095..82c7f3860b2aa1052696e09f036009eef4083987 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,10 +1,12 @@
 2003-08-30  Ulrich Drepper  <drepper@redhat.com>
 
+       * misc/sys/syslog.h (vsyslog): Remove __THROW.
+
        * misc/Makefile (CFLAGS-getpass.c): Add -fexceptions.
        * misc/getpass.c (getpass): Add cleanup handler to ensure the
        stream is closed even if the thread is canceled.
        (call_fclose): New function.
-       * posix/unistd.h: Remove __THROW from getpass prorotype.
+       * posix/unistd.h: Remove __THROW from getpass prototype.
 
        * posix/Makefile (CFLAGS-getopt.c): Add -fexceptions.
 
index 8d501cfbd38f4bdab1f929900b1ccdfc6d8d78d7..ace88a0979c7ff5f8eac4deadcc7c95e1d506e25 100644 (file)
@@ -198,7 +198,7 @@ extern void syslog (int __pri, __const char *__fmt, ...)
    or due to the implementation it is a cancellation point and
    therefore not marked with __THROW.  */
 extern void vsyslog (int __pri, __const char *__fmt, __gnuc_va_list __ap)
-     __THROW __attribute__ ((__format__(__printf__, 2, 0)));
+     __attribute__ ((__format__(__printf__, 2, 0)));
 #endif
 
 __END_DECLS