Sign in
mojo
/
mojo-tools
/
7d579155cc597aa3befcbfad66eef54bda06b57c
/
.
/
fusl
/
src
/
mq
/
mq_close.c
blob: 11e5456eb80c8e78f701e0123b16754bd85c4df3 [
file
] [
log
] [
blame
]
#include
<mqueue.h>
#include
"syscall.h"
int
mq_close
(
mqd_t
mqd
)
{
return
syscall
(
SYS_close
,
mqd
);
}