summaryrefslogtreecommitdiff
path: root/prober/sniff_mq_existence.c
diff options
context:
space:
mode:
Diffstat (limited to 'prober/sniff_mq_existence.c')
-rw-r--r--prober/sniff_mq_existence.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/prober/sniff_mq_existence.c b/prober/sniff_mq_existence.c
new file mode 100644
index 0000000..af98b15
--- /dev/null
+++ b/prober/sniff_mq_existence.c
@@ -0,0 +1,8 @@
+#include <mqueue.h>
+
+int main(void) {
+ mq_unlink("");
+
+ return 0;
+}
+