Home
last modified time | relevance | path

Searched refs:path_max (Results 1 – 2 of 2) sorted by relevance

/toolchain/binutils/binutils-2.25/libiberty/
Dlrealpath.c115 long path_max = pathconf ("/", _PC_PATH_MAX); in lrealpath() local
116 if (path_max > 0) in lrealpath()
120 buf = (char *) malloc (path_max); in lrealpath()
/toolchain/binutils/binutils-2.25/intl/
Ddcigettext.c537 size_t path_max; variable
540 path_max = (unsigned int) PATH_MAX;
541 path_max += 2; /* The getcwd docs say to do this. */
545 dirname = (char *) alloca (path_max + dirname_len);
549 ret = getcwd (dirname, path_max);
553 path_max += path_max / 2;
554 path_max += PATH_INCR;