From: Ulrich Drepper Date: Mon, 20 Sep 1999 01:32:15 +0000 (+0000) Subject: (__aio_sigqueue): Use old style function definition to avoid a X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=39ec85dbc293759643532d413546ca16904ae487;p=thirdparty%2Fglibc.git (__aio_sigqueue): Use old style function definition to avoid a compilation failure. --- diff --git a/sysdeps/generic/aio_sigqueue.c b/sysdeps/generic/aio_sigqueue.c index bc703518d41..5c19bce8eaf 100644 --- a/sysdeps/generic/aio_sigqueue.c +++ b/sysdeps/generic/aio_sigqueue.c @@ -23,7 +23,10 @@ #include "aio_misc.h" int -__aio_sigqueue (int sig, const union sigval val, pid_t caller_pid) +__aio_sigqueue (sig, val, caller_pid) + int sig; + const union sigval val; + pid_t caller_pid; { __set_errno (ENOSYS); return -1;