summaryrefslogtreecommitdiff
path: root/prober/sniff_realtime_lib.c
blob: c0a15a45e05469efab5d9326908bf3811c496b0d (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <mqueue.h>

int main(void) { 
    /* Under FreeBSD and OpenSuse, linking to the realtime lib is required, 
       but only for mq_xxx() functions so checking for sem_xxx() or shm_xxx() 
       here is not be a sufficient test.
    */
    mq_unlink(""); 

    return 0;
}