freebsd-dev/lib/libc/gen/semconfig.c
David E. O'Brien 333fc21e3c Fix the style of the SCM ID's.
I believe have made all of libc .c's as consistent as possible.
2002-03-22 21:53:29 +00:00

17 lines
281 B
C

#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#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));
}