Make obstack_strdup inline
This changes obstack_strdup to be an inline function. This seems better to me, considering how small it is; but also it follows what the code did before the previous patch. gdb/ChangeLog 2019-08-06 Tom Tromey <tom@tromey.com> * gdb_obstack.h (obstack_strdup): Define. * gdb_obstack.c (obstack_strdup): Don't define.
This commit is contained in:
parent
021887d88a
commit
f25102f7b1
3 changed files with 10 additions and 11 deletions
|
@ -45,13 +45,3 @@ obconcat (struct obstack *obstackp, ...)
|
|||
|
||||
return (char *) obstack_finish (obstackp);
|
||||
}
|
||||
|
||||
/* See gdb_obstack.h. */
|
||||
|
||||
char *
|
||||
obstack_strdup (struct obstack *obstackp, const char *string)
|
||||
{
|
||||
char *obstring = (char *) obstack_alloc (obstackp, strlen (string) + 1);
|
||||
strcpy (obstring, string);
|
||||
return obstring;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue