summaryrefslogtreecommitdiffstats
path: root/lib/libc/gen/semconfig.c
blob: cf5399b6dde4a96641fd132287c46ad962519b3d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/sem.h>

#if __STDC__
int semconfig(int cmd, int p1, int p2, int p3)
#else
int semconfig(cmd, p1, p2, p3)
	int cmd, p1, p2, p3;
#endif
{
	return (semsys(3, cmd, p1, p2, p3));
}
OpenPOWER on IntegriCloud