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