Parcourir la source

Correct a problem introduced by porting the glibc header

Peter S. Mazinger il y a 20 ans
Parent
commit
e1533f29c6
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      include/signal.h

+ 1 - 1
include/signal.h

@@ -155,8 +155,8 @@ extern int __sigpause (int __sig_or_mask, int __is_sig);
 #ifdef __FAVOR_BSD
 /* Set the mask of blocked signals to MASK,
    wait for a signal to arrive, and then restore the mask.  */
-# define sigpause(mask) __sigpause ((mask), 0)
 extern int sigpause (int __mask) __THROW __attribute_deprecated__;
+# define sigpause(mask) __sigpause ((mask), 0)
 #else
 # ifdef __USE_XOPEN
 #  ifdef __GNUC__