summaryrefslogtreecommitdiff
path: root/src/mqueue/mq_send.c
blob: 7e03dd49b84cce4aef9f4f081975afc041dd3a45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#if 0

#include <mqueue.h>

int mq_send(mqd_t mqdes, const char * msg_ptr, size_t msg_len, unsigned msg_prio)
{
	return 0;
}

/*
POSIX(199309)
LINK(rt)
*/


#endif