* include/limits.h (NAME_MAX): New define.

(PATH_MAX): POSIX allows PATH_MAX to include trailing NUL.
This commit is contained in:
Corinna Vinschen 2005-03-29 17:46:17 +00:00
parent db27ea4125
commit 232fee428a
2 changed files with 9 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2005-03-29 Eric Blake <ebb9@byu.net>
* include/limits.h (NAME_MAX): New define.
(PATH_MAX): POSIX allows PATH_MAX to include trailing NUL.
2005-03-29 Corinna Vinschen <corinna@vinschen.de>
* path.cc (is_floppy): Make externally available.

View File

@ -125,7 +125,10 @@ details. */
#define SSIZE_MAX (__LONG_MAX__)
/* Maximum length of a path */
#define PATH_MAX (260 - 1 /*NUL*/)
#define PATH_MAX 260
/* Maximum length of a path component. */
#define NAME_MAX 255
/* Max num groups for a user, value taken from NT documentation */
/* Must match <sys/param.h> NGROUPS */