2003-09-08 Andrew Cagney <cagney@redhat.com>

* gnu-nat.c: Remove "inline" function attribute.
	* alpha-tdep.c, ppc-linux-tdep.c, macroexp.c: Ditto.
This commit is contained in:
Andrew Cagney
2003-09-09 03:14:02 +00:00
parent de854437e5
commit 39efb398a9
5 changed files with 20 additions and 15 deletions

View File

@ -145,7 +145,7 @@ resize_buffer (struct macro_buffer *b, int n)
/* Append the character C to the buffer B. */
static inline void
static void
appendc (struct macro_buffer *b, int c)
{
int new_len = b->len + 1;
@ -159,7 +159,7 @@ appendc (struct macro_buffer *b, int c)
/* Append the LEN bytes at ADDR to the buffer B. */
static inline void
static void
appendmem (struct macro_buffer *b, char *addr, int len)
{
int new_len = b->len + len;