25845f
Adjust various functions to prototype style which are defined under
25845f
NO_CANCELLATION conditionals.
25845f
25845f
Upstream, the function definitions were removed in:
25845f
25845f
commit c6bb095eb544aa32d3f4b8e9aa434d686915446e
25845f
Author: Adhemerval Zanella <azanella@linux.vnet.ibm.com>
25845f
Date:   Sun Sep 28 08:46:23 2014 -0300
25845f
25845f
    nptl: Rewrite cancellation macros
25845f
25845f
diff --git a/sysdeps/unix/sysv/linux/sigsuspend.c b/sysdeps/unix/sysv/linux/sigsuspend.c
25845f
index 1cd1de88d303fd66..e5ae86382bc74c7d 100644
25845f
--- a/sysdeps/unix/sysv/linux/sigsuspend.c
25845f
+++ b/sysdeps/unix/sysv/linux/sigsuspend.c
25845f
@@ -53,8 +53,7 @@ strong_alias (__sigsuspend, __libc_sigsuspend)
25845f
 
25845f
 #ifndef NO_CANCELLATION
25845f
 int
25845f
-__sigsuspend_nocancel (set)
25845f
-     const sigset_t *set;
25845f
+__sigsuspend_nocancel (const sigset_t *set)
25845f
 {
25845f
   return do_sigsuspend (set);
25845f
 }