diff options
Diffstat (limited to 'sysdeps/stub/pause.c')
-rw-r--r-- | sysdeps/stub/pause.c | 15 |
1 files changed, 3 insertions, 12 deletions
diff --git a/sysdeps/stub/pause.c b/sysdeps/stub/pause.c index 6d268643aa..b2a7adde76 100644 --- a/sysdeps/stub/pause.c +++ b/sysdeps/stub/pause.c @@ -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 <errno.h> #include <unistd.h> @@ -25,18 +24,10 @@ Cambridge, MA 02139, USA. */ This is supposed to always return -1 and set errno to EINTR, but rules were meant to be broken. */ int -DEFUN_VOID(pause) +pause () { errno = ENOSYS; - return(-1); + return -1; } - - -#ifdef HAVE_GNU_LD - -#include <gnu-stabs.h> - -stub_warning(pause); - -#endif /* GNU stabs. */ +stub_warning (pause) |