aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/unix/bsd
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1998-07-21 10:36:59 +0000
committerUlrich Drepper <drepper@redhat.com>1998-07-21 10:36:59 +0000
commit2b25f93f7ad09ec1c2b93e07ceae577b56b44a80 (patch)
tree3b0aebccfa57d4e42152d5156e759f1204c2339b /sysdeps/unix/bsd
parente4940e6628c088f722df721c9634b55be7405e2c (diff)
downloadglibc-2b25f93f7ad09ec1c2b93e07ceae577b56b44a80.zip
glibc-2b25f93f7ad09ec1c2b93e07ceae577b56b44a80.tar.gz
glibc-2b25f93f7ad09ec1c2b93e07ceae577b56b44a80.tar.bz2
Update.
1998-07-20 Jose M. Moya <josem@gnu.org> * hurd/hurdmsg.c (_S_msg_get_env_variable): Copy getenv return value. 1998-07-20 Roland McGrath <roland@baalperazim.frob.com> * sysdeps/mach/hurd/getdomain.c: New file. * sysdeps/mach/hurd/setdomain.c: New file. 1998-07-20 Roland McGrath <roland@baalperazim.frob.com> * sysdeps/unix/bsd/sigsuspend.c: Define __sigsuspend with sigsuspend as a weak alias.
Diffstat (limited to 'sysdeps/unix/bsd')
-rw-r--r--sysdeps/unix/bsd/sigsuspend.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sysdeps/unix/bsd/sigsuspend.c b/sysdeps/unix/bsd/sigsuspend.c
index d416a5f..a12d138 100644
--- a/sysdeps/unix/bsd/sigsuspend.c
+++ b/sysdeps/unix/bsd/sigsuspend.c
@@ -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;
{
int mask;
@@ -44,3 +44,4 @@ sigsuspend (set)
return __sigpause (mask, 0);
}
+weak_alias (__sigsuspend, sigsuspend)