#include #include "syscall.h" int mq_close(mqd_t mqd) { return syscall(SYS_close, mqd); } #ifdef TEST int main(void) { return 0; } #endif