1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 02:27:43 +00:00

LibC: Added execlp method and new pathconf setting

Added execlp method, and _PC_PIPE_BUF setting to pathconf method.
This commit is contained in:
Brandon Scott 2019-11-16 02:35:48 -06:00 committed by Andreas Kling
parent eb719aa726
commit f999e30afd
3 changed files with 28 additions and 7 deletions

View file

@ -8,6 +8,7 @@
#if !defined MAXPATHLEN && defined PATH_MAX
# define MAXPATHLEN PATH_MAX
#endif
#define PIPE_BUF 4096
#define INT_MAX INT32_MAX
#define INT_MIN INT32_MIN