repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
document and make explicit desired noinline property for __init_libc
[musl.git]
/
src
/
mq
/
mq_setattr.c
blob
eae022e946b18ad36af97b8793e74c71b7d47733
1
#include <mqueue.h>
2
#include
"syscall.h"
3
4
int
mq_setattr
(
mqd_t mqd
,
const struct
mq_attr
*
restrict
new
,
struct
mq_attr
*
restrict old
)
5
{
6
return
syscall
(
SYS_mq_getsetattr
,
mqd
,
new
,
old
);
7
}