#include #include "syscall.h" int mq_setattr(mqd_t mqd, const struct mq_attr *restrict new, struct mq_attr *restrict old) { return syscall(SYS_mq_getsetattr, mqd, new, old); } #ifdef TEST int main(void) { return 0; } #endif