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