9a9b91c940
It's finally done.. Signed-off-by: kaguya <vpshinomiya@protonmail.com>
24 lines
448 B
C++
24 lines
448 B
C++
|
|
#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();
|
|
}
|