HomeSort by: relevance | last modified time | path
    Searched defs:nextpathptr (Results 1 - 1 of 1) sorted by relevancy

  /src/usr.bin/make/
util.c 243 char *pathptr, *nextpathptr, *cur_name_add; local in function:getwd
254 cur_name_add = nextpathptr = &nextpathbuf[MAXPATHLEN - 1];
262 nextpathptr = strrcpy(nextpathptr, "../");
275 if (stat(nextpathptr, &st_dotdot) == -1) {
278 nextpathptr, strerror(errno));
281 if ((dp = opendir(nextpathptr)) == NULL) {
284 nextpathptr, strerror(errno));
303 if (lstat(nextpathptr, &st_next) == -1) {
325 nextpathptr = strrcpy(nextpathptr, "../")
    [all...]

Completed in 12 milliseconds