Formerly misc.c.~18~

This commit is contained in:
Roland McGrath 1992-10-15 23:01:34 +00:00
parent 6247727678
commit d3543bc097

19
misc.c
View file

@ -596,3 +596,22 @@ child_access ()
if (setgid (user_gid) < 0)
pfatal_with_name ("setgid");
}
#ifdef NEED_GET_PATH_MAX
unsigned int
get_path_max ()
{
static unsigned int value;
if (value == 0)
{
long int x = pathconf ("/", _PC_PATH_MAX);
if (x > 0)
value = x;
else
return MAXPATHLEN;
}
return value;
}
#endif