mirror of https://git.musl-libc.org/git/musl
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
183 B
18 lines
183 B
|
15 years ago
|
#ifndef _ULIMIT_H
|
||
|
|
#define _ULIMIT_H
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
extern "C" {
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#define UL_GETFSIZE 1
|
||
|
|
#define UL_SETFSIZE 2
|
||
|
|
|
||
|
|
long ulimit (int, ...);
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
}
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#endif
|