Home
last modified time | relevance | path

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

/netbsd-src/external/gpl3/gdb/dist/readline/readline/
H A Dcomplete.c1259 char **temp_array; in remove_duplicate_matches() local
1286 temp_array = (char **)xmalloc ((3 + newlen) * sizeof (char *)); in remove_duplicate_matches()
1290 temp_array[j++] = matches[i]; in remove_duplicate_matches()
1292 temp_array[j] = (char *)NULL; in remove_duplicate_matches()
1298 temp_array[0] = lowest_common; in remove_duplicate_matches()
1303 if (j == 2 && strcmp (temp_array[0], temp_array[1]) == 0) in remove_duplicate_matches()
1305 xfree (temp_array[1]); in remove_duplicate_matches()
1306 temp_array[1] = (char *)NULL; in remove_duplicate_matches()
1308 return (temp_array); in remove_duplicate_matches()