aboutsummaryrefslogtreecommitdiff
path: root/src/mq/mq_open.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mq/mq_open.c')
-rw-r--r--src/mq/mq_open.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/mq/mq_open.c b/src/mq/mq_open.c
index aa91d589..5d6809bb 100644
--- a/src/mq/mq_open.c
+++ b/src/mq/mq_open.c
@@ -17,3 +17,11 @@ mqd_t mq_open(const char *name, int flags, ...)
}
return syscall(SYS_mq_open, name, flags, mode, attr);
}
+
+
+#ifdef TEST
+int
+main(void) {
+ return 0;
+}
+#endif