]> git.proxmox.com Git - wasi-libc.git/blame - libc-top-half/musl/include/ulimit.h
Don't define `_POSIX_THREADS` unless threads are enabled. (#356)
[wasi-libc.git] / libc-top-half / musl / include / ulimit.h
CommitLineData
320054e8
DG
1#ifndef _ULIMIT_H
2#define _ULIMIT_H
3
4#ifdef __cplusplus
5extern "C" {
6#endif
7
8#define UL_GETFSIZE 1
9#define UL_SETFSIZE 2
10
11long ulimit (int, ...);
12
13#ifdef __cplusplus
14}
15#endif
16
17#endif