blob: 99dd52d156ef326334d1c6394347a1763ff016ae (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include <mqueue.h>
int mq_send(mqd_t mqd, const char *msg, size_t len, unsigned prio)
{
return mq_timedsend(mqd, msg, len, prio, 0);
}
#ifdef TEST
int
main(void) {
return 0;
}
#endif
|