blob: 7e7adb882e835f3bd51493ae4a07d05cea482f8a [file] [log] [blame]
#include <errno.h>
#include <sys/msg.h>
#include "ipc.h"
int msgsnd(int q, const void* m, size_t len, int flag) {
errno = ENOSYS;
return -1;
}