blob: d0d26ece2fb8483ba79ad458043e0766e7e874fe [file] [log] [blame]
/*
Test for the existence and valid prototype
of the mq_timedsend function as specified on
line 9694 of the Base Definitions document
*/
#include <mqueue.h>
#include <time.h>
#include "posixtest.h"
void test_mq_timedsend_prototype(void)
{
mqd_t mqdes;
struct timespec timeout;
char *msgp;
int err;
size_t msg_len;
unsigned msg_prio;
err = mq_timedsend(mqdes, msgp, msg_len, msg_prio, &timeout);
}