mirror of
https://sourceware.org/git/glibc.git
synced 2025-12-24 17:51:17 +03:00
Update.
* sysdeps/unix/sysv/linux/semctl.c (semctl): Define own union semun and use stdarg macros to get the value. * sysdeps/generic/semctl.c: Don't use union semun.
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
/* Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc.
|
||||
/* Copyright (C) 1995, 1996, 1997, 1998 Free Software Foundation, Inc.
|
||||
This file is part of the GNU C Library.
|
||||
Contributed by Ulrich Drepper <drepper@gnu.ai.mit.edu>, August 1995.
|
||||
|
||||
@@ -24,11 +24,7 @@
|
||||
KEY. */
|
||||
|
||||
int
|
||||
semctl (semid, semnum, cmd, arg)
|
||||
int semid;
|
||||
int semnum;
|
||||
int cmd;
|
||||
union semun arg;
|
||||
semctl (int semid, int semnum, int cmd, ...)
|
||||
{
|
||||
__set_errno (ENOSYS);
|
||||
return -1;
|
||||
|
||||
Reference in New Issue
Block a user