gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 1 of 1 for funcall:realpath2_eno (0.00 seconds)
t2ex
bsd_source/lib/libc/src_bsd/stdlib/realpath.c - 8.9KB - 212 lines
78:         } else {
79:                 if ((serrno = (path1 != NULL ? (realpath2_eno(NULL, path1, resolved, eno) != NULL ? 0 : *eno) : __libc_getcwd(resolved, PATH_MAX) & 0xffff)) != 0) {
80:                         if (mem_allocated)
211: e1: if (eno) *eno = serrno; return NULL; 212: } char *realpath2(const char *path1, const char *path2, char *resolved){return realpath2_eno(path1, path2, resolved, NULL);} char *realpath_eno(const char *path, char *resolved, int *eno){return realpath2_eno(NULL, path, resolved, eno);} char *realpath(const char *path, char *resolved){return realpath_eno(path, resolved, NULL);}