1/*
2  Test for the existance and valid prototype
3  of the mq_timedsend function as specified on
4  line 9694 of the Base Definitions document
5*/
6
7#include <mqueue.h>
8#include "posixtest.h"
9#include <stdio.h>
10
11int main()
12{
13	fprintf(stderr, "Test not implemented!\n");
14        return PTS_UNTESTED;
15}
16