Home | History | Annotate | Download | only in mqueue_h
      1 /*
      2 Test for the existence and valid prototype
      3 of the mq_unlink function as specified on
      4 line 9696 of the Base Definitions document
      5 */
      6 
      7 #include <mqueue.h>
      8 #include "posixtest.h"
      9 
     10 void test_mqueue_unlink_prototype()
     11 {
     12 	const char *name;
     13 	int err;
     14 
     15 	err = mq_unlink(name);
     16 
     17 }
     18