1570af302Sopenharmony_ci#include <mqueue.h> 2570af302Sopenharmony_ci#include "syscall.h" 3570af302Sopenharmony_ci 4570af302Sopenharmony_ciint mq_setattr(mqd_t mqd, const struct mq_attr *restrict new, struct mq_attr *restrict old) 5570af302Sopenharmony_ci{ 6570af302Sopenharmony_ci return syscall(SYS_mq_getsetattr, mqd, new, old); 7570af302Sopenharmony_ci} 8