Home | History | Annotate | Download | only in mqueue_h
      1 /*
      2   Test for the existence and valid prototype
      3   of the mq_receive function as specified on
      4   line 9688 of the Base Definitions document
      5 */
      6 
      7 #include <mqueue.h>
      8 #include "posixtest.h"
      9 
     10 void test_mq_receive_prototype(void)
     11 {
     12 	mqd_t mqdes;
     13 	ssize_t msg_size;
     14 	size_t msg_len;
     15 	char *msgp;
     16 	unsigned msg_prio;
     17 
     18 	msg_size = mq_receive(mqdes, msgp, msg_len, &msg_prio);
     19 
     20 }
     21