Home | History | Annotate | Download | only in src

Lines Matching refs:upath

1243 do_realpath(const char *upath)
1262 if (upath[0] == '/') {
1263 /* upath is an absolute pathname */
1264 strdupx(ipath, upath, ATEMP);
1266 /* upath is a relative pathname, prepend cwd */
1269 ipath = shf_smprintf("%s%s%s", tp, "/", upath);
1273 /* ipath and upath are in memory at the same time -> unchecked */