blob: c2055e81a7f4f59c740681b06bf69d3d398ffdd5 [file] [log] [blame]
/*
Test for the existence and valid prototype
of the mq_setattr function as specified on
line 9690 of the Base Definitions document
*/
#include <mqueue.h>
#include "posixtest.h"
#include <stdio.h>
void test_mq_setattr_prototype(void)
{
mqd_t mqdes;
struct mq_attr mqs, omqs;
int err;
err = mq_setattr(mqdes, &mqs, &omqs);
}