1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 23:17:45 +00:00

LibC: Add POSIX1 minimum limits to limits.h

This commit is contained in:
Brendan Coles 2020-11-09 16:24:21 +00:00 committed by Andreas Kling
parent 518481086b
commit 9b79ea78d3
2 changed files with 69 additions and 0 deletions

View file

@ -72,3 +72,7 @@
#define PTHREAD_STACK_MIN 65536
#define SSIZE_MAX 2147483647
#ifdef __USE_POSIX
# include <bits/posix1_lim.h>
#endif