summaryrefslogtreecommitdiff
path: root/prober/sniff_mq_prio_max.c
diff options
context:
space:
mode:
authorLorry Tar Creator <lorry-tar-importer@baserock.org>2014-02-21 04:46:49 +0000
committer <>2014-08-04 21:38:17 +0000
commitf3765db04b903b3671733e07cf1541a51966dd14 (patch)
treedefcc3c47d9b8bd78b97dcc04ee779a758d37b1c /prober/sniff_mq_prio_max.c
downloadposix-ipc-tarball-master.tar.gz
Imported from /home/lorry/working-area/delta_python-packages_posix-ipc-tarball/posix_ipc-0.9.8.tar.gz.HEADposix_ipc-0.9.8master
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;
+}
+