mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-30 22:43:12 +03:00
Update.
* sysdeps/unix/sysv/linux/fcntl.c (__fcntl_nocancel): Likewise.
This commit is contained in:
@ -3,6 +3,7 @@
|
|||||||
* sysdeps/unix/sysv/linux/i386/fcntl.c (__fcntl_nocancel): Change
|
* sysdeps/unix/sysv/linux/i386/fcntl.c (__fcntl_nocancel): Change
|
||||||
prototype to use variable argument lists and get the possible one
|
prototype to use variable argument lists and get the possible one
|
||||||
argument via va_arg.
|
argument via va_arg.
|
||||||
|
* sysdeps/unix/sysv/linux/fcntl.c (__fcntl_nocancel): Likewise.
|
||||||
|
|
||||||
2003-09-04 Ulrich Drepper <drepper@redhat.com>
|
2003-09-04 Ulrich Drepper <drepper@redhat.com>
|
||||||
|
|
||||||
|
@ -26,8 +26,15 @@
|
|||||||
|
|
||||||
|
|
||||||
int
|
int
|
||||||
__fcntl_nocancel (int fd, int cmd, void *arg)
|
__fcntl_nocancel (int fd, int cmd, ...)
|
||||||
{
|
{
|
||||||
|
va_list ap;
|
||||||
|
void *arg;
|
||||||
|
|
||||||
|
va_start (ap, cmd);
|
||||||
|
arg = va_arg (ap, void *);
|
||||||
|
va_end (ap);
|
||||||
|
|
||||||
return INLINE_SYSCALL (fcntl, 3, fd, cmd, arg);
|
return INLINE_SYSCALL (fcntl, 3, fd, cmd, arg);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user