blob: 5149ba73b8ecbc7317f36aa975e498b8a464ce48 [file] [log] [blame]
/*
Test for the existence and valid prototype
of the mq_open function as specified on
line 9687 of the Base Definitions document
*/
#include <mqueue.h>
#include "posixtest.h"
void test_mq_open_prototype(void)
{
mqd_t res;
int oflag;
const char *name;
res = mq_open(name, oflag);
}