Update.
authorUlrich Drepper <drepper@redhat.com>
Tue, 29 Aug 2000 20:17:40 +0000 (20:17 +0000)
committerUlrich Drepper <drepper@redhat.com>
Tue, 29 Aug 2000 20:17:40 +0000 (20:17 +0000)
* signal/signal.h (sigpause): Move __THROW before __asm__.

ChangeLog
signal/signal.h

index 60cf864..9caad1f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 2000-08-29  Ulrich Drepper  <drepper@redhat.com>
 
+       * signal/signal.h (sigpause): Move __THROW before __asm__.
+
        * inet/rcmd.c (__checkhost_sa): If getnameinfo succeeds but the
        names don't match don't return.
        Patch by Olaf Kirch <okir@flash.lst.de>.
index cc422ac..3cf8025 100644 (file)
@@ -147,7 +147,7 @@ extern int sigpause (int __mask) __THROW;
 #else
 # ifdef __USE_XOPEN
 #  ifdef __GNUC__
-extern int sigpause (int __sig) __asm__ ("__xpg_sigpause") __THROW;
+extern int sigpause (int __sig) __THROW __asm__ ("__xpg_sigpause");
 #  endif
 /* Remove a signal from the signal mask and suspend the process.  */
 #  define sigpause(sig) __sigpause ((sig), 1)