Home | History | Annotate | Download | only in mqueue_h
      1 /*
      2   Test for the existence and valid prototype
      3   of the mq_setattr function as specified on
      4   line 9690 of the Base Definitions document
      5 */
      6 
      7 #include <mqueue.h>
      8 #include "posixtest.h"
      9 #include <stdio.h>
     10 
     11 void test_mq_setattr_prototype(void)
     12 {
     13 	mqd_t mqdes;
     14 	struct mq_attr mqs, omqs;
     15 	int err;
     16 
     17 	err = mq_setattr(mqdes, &mqs, &omqs);
     18 
     19 }
     20