1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 11:28:11 +00:00

LibC: Add NAME_MAX (255)

This commit is contained in:
Andreas Kling 2020-10-22 18:58:53 +02:00
parent c31cc8c060
commit e590c53a1d

View file

@ -36,6 +36,9 @@
#if !defined MAXPATHLEN && defined PATH_MAX
# define MAXPATHLEN PATH_MAX
#endif
#define NAME_MAX 255
#define PIPE_BUF 4096
#define INT_MAX INT32_MAX