blob: ad705f8b3a6afd7adb0fab86fc4cdc874e67317a (
plain) (
tree)
|
|
#include <mqueue.h>
#include "syscall.h"
ssize_t mq_timedreceive(mqd_t mqd, char *msg, size_t len, unsigned *prio, const struct timespec *at)
{
return syscall(SYS_mq_timedreceive, mqd, msg, len, prio, at);
}
|