* sysvipc/sys/sem.h: Don't use union semun in semctl prototype.
This commit is contained in:
Ulrich Drepper 1998-04-28 22:41:57 +00:00
parent 5b155773ee
commit 936e9dafaa
2 changed files with 4 additions and 3 deletions

View File

@ -1,5 +1,7 @@
1998-04-28 Ulrich Drepper <drepper@cygnus.com>
* sysvipc/sys/sem.h: Don't use union semun in semctl prototype.
* string/basename.c [!_LIBC]: Define function as gnu_basename.
* posix/getopt.c [!__GNU_LIBRARY__]: Include string.h or

View File

@ -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.
The GNU C Library is free software; you can redistribute it and/or
@ -44,8 +44,7 @@ struct sembuf
__BEGIN_DECLS
/* Semaphore control operation. */
extern int semctl __P ((int __semid, int __semnum, int __cmd,
union semun __arg));
extern int semctl __P ((int __semid, int __semnum, int __cmd, ...));
/* Get semaphore. */
extern int semget __P ((key_t __key, int __nsems, int __semflg));