summaryrefslogtreecommitdiff
path: root/src/mq/mq_close.c
blob: a61f094d41ffb0cf32bbf798fb2305d2399ca71b (plain) (blame)
1
2
3
4
5
6
7
#include <mqueue.h>
#include "syscall.h"

int mq_close(mqd_t mqd)
{
	return syscall(SYS_close, mqd);
}