implement week numbers and half of the week-based-year logic for strftime
[musl] / src / mq / mq_setattr.c
1 #include <mqueue.h>
2 #include "syscall.h"
3
4 int mq_setattr(mqd_t mqd, const struct mq_attr *restrict new, struct mq_attr *restrict old)
5 {
6         return syscall(SYS_mq_getsetattr, mqd, new, old);
7 }