1993-08-26 19:26:18 +04:00
|
|
|
#if defined(LIBC_SCCS) && !defined(lint)
|
1994-05-29 03:37:53 +04:00
|
|
|
static char *rcsid = "$Id: shmctl.c,v 1.4 1994/05/28 23:37:55 hpeyerl Exp $";
|
1993-08-26 19:26:18 +04:00
|
|
|
#endif /* LIBC_SCCS and not lint */
|
|
|
|
|
1993-08-25 06:50:51 +04:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/ipc.h>
|
|
|
|
#include <sys/shm.h>
|
|
|
|
|
|
|
|
#if __STDC__
|
1994-05-29 03:37:53 +04:00
|
|
|
void shmctl(int shmid, int cmd, struct shmid_ds *buf)
|
1993-08-25 06:50:51 +04:00
|
|
|
#else
|
1994-05-29 03:37:53 +04:00
|
|
|
void shmctl(shmid, cmd, buf)
|
1993-08-25 06:50:51 +04:00
|
|
|
int shmid;
|
|
|
|
int cmd;
|
1993-11-19 06:18:24 +03:00
|
|
|
struct shmid_ds *buf;
|
1993-08-25 06:50:51 +04:00
|
|
|
#endif
|
|
|
|
{
|
1994-05-29 03:37:53 +04:00
|
|
|
return ((void) shmsys(1, shmid, cmd, buf));
|
1993-08-25 06:50:51 +04:00
|
|
|
}
|