X-Git-Url: http://git.ipfire.org/?a=blobdiff_plain;f=posix%2Fpause.c;h=5a5056b64ac7575920eb53c13cb9b1906b4be29a;hb=eaad14b56aa0d18b3b6bbb1618de2ab5b242d434;hp=af239bec76a3fbdce8ddc844f6e501abd9c89b9e;hpb=59ba27a63ada3f46b71ec99a314dfac5a38ad6d2;p=thirdparty%2Fglibc.git diff --git a/posix/pause.c b/posix/pause.c index af239bec76a..5a5056b64ac 100644 --- a/posix/pause.c +++ b/posix/pause.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 1996, 1997 Free Software Foundation, Inc. +/* Copyright (C) 1991-2019 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 @@ -13,7 +13,7 @@ You should have received a copy of the GNU Lesser General Public License along with the GNU C Library; if not, see - . */ + . */ #include #include @@ -23,11 +23,10 @@ This is supposed to always return -1 and set errno to EINTR, but rules were meant to be broken. */ int -pause () +pause (void) { __set_errno (ENOSYS); return -1; } stub_warning (pause) -#include