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