about summary refs log tree commit diff
path: root/ports/sysdeps/unix/sysv/linux/ia64
diff options
context:
space:
mode:
authorJoseph Myers <joseph@codesourcery.com>2013-02-08 01:12:11 +0000
committerJoseph Myers <joseph@codesourcery.com>2013-02-08 01:12:11 +0000
commitf3aae3f3eb4e4345413dc238e941cdb52f747d16 (patch)
treed1613e7ec39b9d5b7c9b53a286fc653093721594 /ports/sysdeps/unix/sysv/linux/ia64
parentb2c9eff43c49d528c7ad3d0d91d03ccf0ae5ae0f (diff)
downloadglibc-f3aae3f3eb4e4345413dc238e941cdb52f747d16.tar.gz
glibc-f3aae3f3eb4e4345413dc238e941cdb52f747d16.tar.xz
glibc-f3aae3f3eb4e4345413dc238e941cdb52f747d16.zip
Remove CHECK_1 and CHECK_1_NULL_OK.
Diffstat (limited to 'ports/sysdeps/unix/sysv/linux/ia64')
-rw-r--r--ports/sysdeps/unix/sysv/linux/ia64/sigaction.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/ports/sysdeps/unix/sysv/linux/ia64/sigaction.c b/ports/sysdeps/unix/sysv/linux/ia64/sigaction.c
index b41c6c3a7e..664d0e12b9 100644
--- a/ports/sysdeps/unix/sysv/linux/ia64/sigaction.c
+++ b/ports/sysdeps/unix/sysv/linux/ia64/sigaction.c
@@ -26,7 +26,6 @@
 
 #include <sysdep.h>
 #include <sys/syscall.h>
-#include <bp-checks.h>
 
 /* The variable is shared between all wrappers around signal handling
    functions which have RT equivalents.  This is the definition.  */
@@ -42,8 +41,7 @@ __libc_sigaction (sig, act, oact)
 {
   /* XXX The size argument hopefully will have to be changed to the
      real size of the user-level sigset_t.  */
-  return INLINE_SYSCALL (rt_sigaction, 4, sig,
-			 CHECK_1_NULL_OK (act), CHECK_1_NULL_OK (oact), _NSIG / 8);
+  return INLINE_SYSCALL (rt_sigaction, 4, sig, act, oact, _NSIG / 8);
 }
 libc_hidden_def (__libc_sigaction)