Remove internal gdb definition of fixed arg count concat() function and

convert to use of variable arg count concat() in libiberty.
This commit is contained in:
Fred Fish
1991-11-12 17:50:14 +00:00
parent ecb1b520de
commit 58ae87f612
18 changed files with 35 additions and 35 deletions

View File

@@ -112,7 +112,7 @@ core_open (filename, from_tty)
filename = tilde_expand (filename);
if (filename[0] != '/') {
temp = concat (current_directory, "/", filename);
temp = concat (current_directory, "/", filename, NULL);
free (filename);
filename = temp;
}