edbaccf9b30ae20a1bda92fe39c70f739da7a15d
[musl] / src / mq / mq_timedsend.c
1 #include <mqueue.h>
2 #include "syscall.h"
3
4 int mq_timedsend(mqd_t mqd, const char *msg, size_t len, unsigned prio, const struct timespec *at)
5 {
6         return syscall(SYS_mq_timedsend, mqd, msg, len, prio, at);
7 }