mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 19:43:32 +00:00
16 lines
488 B
C
16 lines
488 B
C
#ifndef COSMOPOLITAN_LIBC_CALLS_STRUCT_RLIMIT_H_
|
|
#define COSMOPOLITAN_LIBC_CALLS_STRUCT_RLIMIT_H_
|
|
#if !(__ASSEMBLER__ + __LINKER__ + 0)
|
|
COSMOPOLITAN_C_START_
|
|
|
|
struct rlimit {
|
|
uint64_t rlim_cur; /* current (soft) limit in bytes */
|
|
uint64_t rlim_max; /* maximum limit in bytes */
|
|
};
|
|
|
|
int getrlimit(int, struct rlimit *);
|
|
int setrlimit(int, const struct rlimit *);
|
|
|
|
COSMOPOLITAN_C_END_
|
|
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
|
|
#endif /* COSMOPOLITAN_LIBC_CALLS_STRUCT_RLIMIT_H_ */
|