summaryrefslogtreecommitdiff
path: root/prober/sniff_mq_prio_max.c
diff options
context:
space:
mode:
Diffstat (limited to 'prober/sniff_mq_prio_max.c')
-rw-r--r--prober/sniff_mq_prio_max.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/prober/sniff_mq_prio_max.c b/prober/sniff_mq_prio_max.c
new file mode 100644
index 0000000..63cf68d
--- /dev/null
+++ b/prober/sniff_mq_prio_max.c
@@ -0,0 +1,9 @@
+#include <stdio.h>
+#include <limits.h>
+
+int main(void) {
+ printf("%ld\n", (long)MQ_PRIO_MAX);
+
+ return 0;
+}
+