diff options
author | Andrew Cagney <cagney@redhat.com> | 2003-09-09 03:14:02 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2003-09-09 03:14:02 +0000 |
commit | 39efb398a9e7bdd98f5f838ab2ea23e758bbddce (patch) | |
tree | 97c7fc722d076b4c696148e8b78672fb78e5530b /gdb/macroexp.c | |
parent | de854437e5de7bd6e20b87f564cad22091ec9459 (diff) | |
download | gdb-39efb398a9e7bdd98f5f838ab2ea23e758bbddce.zip gdb-39efb398a9e7bdd98f5f838ab2ea23e758bbddce.tar.gz gdb-39efb398a9e7bdd98f5f838ab2ea23e758bbddce.tar.bz2 |
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.
Diffstat (limited to 'gdb/macroexp.c')
-rw-r--r-- | gdb/macroexp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/macroexp.c b/gdb/macroexp.c index 992c466..e39f81a 100644 --- a/gdb/macroexp.c +++ b/gdb/macroexp.c @@ -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; |