aboutsummaryrefslogtreecommitdiff
path: root/lib/libc/gen/shmctl.c
blob: 110837fa67ee4dbd533397178b827f81c1cf57e0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#if defined(LIBC_SCCS) && !defined(lint)
static char *rcsid = "shmctl.c,v 1.1 1994/09/13 14:52:30 dfr Exp";
#endif /* LIBC_SCCS and not lint */

#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/shm.h>

#if __STDC__
int shmctl(int shmid, int cmd, struct shmid_ds *buf)
#else
int shmctl(shmid, cmd, buf)
	int shmid;
	int cmd;
	struct shmid_ds *buf;
#endif
{
	return (shmsys(4, shmid, cmd, buf));
}