mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-13 06:40:09 +00:00
(__aio_sigqueue): Use old style function definition to avoid a
compilation failure.
This commit is contained in:
parent
df13750fa1
commit
39ec85dbc2
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user