]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - sysdeps/posix/sigsuspend.c
Update.
[thirdparty/glibc.git] / sysdeps / posix / sigsuspend.c
index db7899bfd4aaddaf62c87c0e4ba41dd853552f9b..914340d681baee6d3951add8d4fd92f202bff593 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991, 1996, 1997 Free Software Foundation, Inc.
+/* Copyright (C) 1991, 1996, 1997, 1998 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -25,7 +25,7 @@
 /* Change the set of blocked signals to SET,
    wait until a signal arrives, and restore the set of blocked signals.  */
 int
-sigsuspend (set)
+__sigsuspend (set)
      const sigset_t *set;
 {
   sigset_t oset;
@@ -49,3 +49,4 @@ sigsuspend (set)
   __set_errno (save);
   return -1;
 }
+weak_alias (__sigsuspend, sigsuspend)