2002-03-22 21:53:29 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
1994-09-13 14:52:45 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/ipc.h>
|
|
|
|
#include <sys/msg.h>
|
|
|
|
|
|
|
|
#if __STDC__
|
|
|
|
int msgget(key_t key, int msgflg)
|
|
|
|
#else
|
|
|
|
int msgget(key,msgflg)
|
|
|
|
key_t key;
|
|
|
|
int msgflg;
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
return (msgsys(1, key, msgflg));
|
|
|
|
}
|