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
delete a redundant if in dynamic linker ctor execution loop
[musl.git]
/
src
/
linux
/
quotactl.c
blob
344eb0d169a10fa91ee89a5ffa7226b902cea40f
1
#include <sys/quota.h>
2
#include
"syscall.h"
3
4
int
quotactl
(
int
cmd
,
const char
*
special
,
int
id
,
char
*
addr
)
5
{
6
return
syscall
(
SYS_quotactl
,
cmd
,
special
,
id
,
addr
);
7
}