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