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
add TLSDESC support for 32-bit arm
[musl.git]
/
include
/
ulimit.h
blob
efdcd311e5c74dffd2c6f4e809fd7c2e932bf754
1
#ifndef _ULIMIT_H
2
#define _ULIMIT_H
3
4
#ifdef __cplusplus
5
extern
"C"
{
6
#endif
7
8
#define UL_GETFSIZE 1
9
#define UL_SETFSIZE 2
10
11
long
ulimit
(
int
, ...);
12
13
#ifdef __cplusplus
14
}
15
#endif
16
17
#endif