blob: d64643ddbb496905a3580d20f3b3f8b223ea8a12 [file] [log] [blame]
#include <errno.h>
#include <sys/msg.h>
#include "ipc.h"
int msgctl(int q, int cmd, struct msqid_ds* buf) {
errno = ENOSYS;
return -1;
}