about summary refs log tree commit diff
path: root/signal
diff options
context:
space:
mode:
Diffstat (limited to 'signal')
-rw-r--r--signal/sighold.c4
-rw-r--r--signal/sigrelse.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/signal/sighold.c b/signal/sighold.c
index 730bcacb72..30ca7d551b 100644
--- a/signal/sighold.c
+++ b/signal/sighold.c
@@ -1,5 +1,5 @@
 /* Add SIG to the calling process' signal mask.
-   Copyright (C) 1998 Free Software Foundation, Inc.
+   Copyright (C) 1998, 2000 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998.
 
@@ -33,7 +33,7 @@ sighold (sig)
     return -1;
 
   /* Add the specified signal.  */
-  if (sigaddset (&set, sig) < 0)
+  if (__sigaddset (&set, sig) < 0)
     return -1;
 
   /* Set the new mask.  */
diff --git a/signal/sigrelse.c b/signal/sigrelse.c
index 56bafaa906..3ad7da26bd 100644
--- a/signal/sigrelse.c
+++ b/signal/sigrelse.c
@@ -1,5 +1,5 @@
 /* Remove SIG from the calling process' signal mask.
-   Copyright (C) 1998 Free Software Foundation, Inc.
+   Copyright (C) 1998, 2000 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998.
 
@@ -33,7 +33,7 @@ sigrelse (sig)
     return -1;
 
   /* Remove the specified signal.  */
-  if (sigdelset (&set, sig) < 0)
+  if (__sigdelset (&set, sig) < 0)
     return -1;
 
   /* Set the new mask.  */