mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-12 09:17:53 +00:00
11 lines
296 B
C
11 lines
296 B
C
|
#ifndef COSMOPOLITAN_LIBC_INTRIN_RLIMIT_H_
|
||
|
#define COSMOPOLITAN_LIBC_INTRIN_RLIMIT_H_
|
||
|
#include "libc/calls/struct/rlimit.h"
|
||
|
COSMOPOLITAN_C_START_
|
||
|
|
||
|
void __rlimit_stack_set(struct rlimit);
|
||
|
struct rlimit __rlimit_stack_get(void);
|
||
|
|
||
|
COSMOPOLITAN_C_END_
|
||
|
#endif /* COSMOPOLITAN_LIBC_INTRIN_RLIMIT_H_ */
|