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