summaryrefslogtreecommitdiff
path: root/src/sys/msg/msgsnd.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/sys/msg/msgsnd.c')
-rw-r--r--src/sys/msg/msgsnd.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/sys/msg/msgsnd.c b/src/sys/msg/msgsnd.c
new file mode 100644
index 00000000..46149151
--- /dev/null
+++ b/src/sys/msg/msgsnd.c
@@ -0,0 +1,10 @@
+#include <sys/msg.h>
+
+int msgsnd(int msqid, const void *msgp, size_t msgsz, int msgflg)
+{
+ return 0;
+}
+
+/*
+XOPEN(4)
+*/