Home
last modified time | relevance | path

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

/netbsd/src/external/bsd/pcc/dist/pcc/cc/driver/
Ddriver.c233 int need_sep; in find_file() local
238 need_sep = (lp && s->value[lp - 1] != '/') ? 1 : 0; in find_file()
239 f = xmalloc(lp + lf + need_sep + 1); in find_file()
241 if (need_sep) in find_file()
243 memcpy(f + lp + need_sep, file, lf + 1); in find_file()
280 int need_sep; in output_name() local
287 need_sep = 0; in output_name()
289 need_sep = 1; in output_name()
290 path = xmalloc(template_len + need_sep + 6 + 1); in output_name()
292 if (need_sep) in output_name()
[all …]
/netbsd/src/external/bsd/pcc/dist/pcc/cc/cc/
Dcc.c1168 int need_sep; in find_file() local
1173 need_sep = (lp && s->value[lp - 1] != '/') ? 1 : 0; in find_file()
1174 f = xmalloc(lp + lf + need_sep + 1); in find_file()
1176 if (need_sep) in find_file()
1178 memcpy(f + lp + need_sep, file, lf + 1); in find_file()