summaryrefslogtreecommitdiff
path: root/sysdeps/unix/common/pause.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/unix/common/pause.c')
-rw-r--r--sysdeps/unix/common/pause.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sysdeps/unix/common/pause.c b/sysdeps/unix/common/pause.c
index b2fafb958e..a073dd2b3a 100644
--- a/sysdeps/unix/common/pause.c
+++ b/sysdeps/unix/common/pause.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991 Free Software Foundation, Inc.
+/* Copyright (C) 1991, 1996 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
@@ -16,7 +16,6 @@ License along with the GNU C Library; see the file COPYING.LIB. If
not, write to the Free Software Foundation, Inc., 675 Mass Ave,
Cambridge, MA 02139, USA. */
-#include <ansidecl.h>
#include <signal.h>
#include <unistd.h>
@@ -25,7 +24,8 @@ Cambridge, MA 02139, USA. */
This always returns -1 and sets errno to EINTR. */
int
-DEFUN_VOID(pause)
+__libc_pause (void)
{
- return __sigpause(__sigblock(0));
+ return __sigpause (__sigblock (0));
}
+weak_alias (__libc_pause, pause)