use weak symbols for the POSIX functions that will be used by C threads
[musl.git] / src / mq / mq_timedsend.c
blob1c00aa0b28660e0dadc32c4575bfccc00f5fa5c6
1 #include <mqueue.h>
2 #include "syscall.h"
4 int mq_timedsend(mqd_t mqd, const char *msg, size_t len, unsigned prio, const struct timespec *at)
6 return syscall_cp(SYS_mq_timedsend, mqd, msg, len, prio, at);