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

@@ -384,7 +384,7 @@ lookup_internalvar (name)
return var;
var = (struct internalvar *) xmalloc (sizeof (struct internalvar));
var->name = concat (name, "", "");
var->name = concat (name, NULL);
var->value = allocate_value (builtin_type_void);
release_value (var->value);
var->next = internalvars;