summaryrefslogtreecommitdiff
path: root/prober/sniff_mq_existence.c
blob: af98b154f7509ca4bc0f8aef3f32e83e956931a7 (plain)
1
2
3
4
5
6
7
8
#include <mqueue.h>

int main(void) { 
    mq_unlink("");
    
    return 0;
}