Complete Citrus import. Import message catalog implement from
[dragonfly.git] / lib / libc / gen / shmctl.c
1 /*
2  * $FreeBSD: src/lib/libc/gen/shmctl.c,v 1.4 1999/08/27 23:58:57 peter Exp $
3  * $DragonFly: src/lib/libc/gen/shmctl.c,v 1.2 2003/06/17 04:26:42 dillon Exp $
4  */
5
6 #include <sys/types.h>
7 #include <sys/ipc.h>
8 #include <sys/shm.h>
9
10 #if __STDC__
11 int shmctl(int shmid, int cmd, struct shmid_ds *buf)
12 #else
13 int shmctl(shmid, cmd, buf)
14         int shmid;
15         int cmd;
16         struct shmid_ds *buf;
17 #endif
18 {
19         return (shmsys(4, shmid, cmd, buf));
20 }