blob: 95f067e50605a507883e681abf0075bbb43c5f90 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#include <bits/ensure.h>
#include <sys/msg.h>
int msgget(key_t, int) {
__ensure(!"Not implemented");
__builtin_unreachable();
}
int msgctl(int, int, struct msqid_ds *) {
__ensure(!"Not implemented");
__builtin_unreachable();
}
ssize_t msgrcv(int, void *, size_t, long, int) {
__ensure(!"Not implemented");
__builtin_unreachable();
}
int msgsnd(int, const void *, size_t, int) {
__ensure(!"Not implemented");
__builtin_unreachable();
}
|