summaryrefslogtreecommitdiff
path: root/libiberty/cplus-dem.c
diff options
context:
space:
mode:
authorDJ Delorie <dj@delorie.com>2000-11-15 19:10:20 +0000
committerDJ Delorie <dj@delorie.com>2000-11-15 19:10:20 +0000
commite5241b2f346c1078103769b570ca5dab3922fb3a (patch)
tree128120b514328e65132b5f699410a3e80010d658 /libiberty/cplus-dem.c
parent41536a88373b74aeb888970843d4785250567899 (diff)
downloadgdb-e5241b2f346c1078103769b570ca5dab3922fb3a.tar.gz
[merge]
* cplus_dem.c: Eliminate use of DEFUN, it is obsolete and cannot be used in GCC.
Diffstat (limited to 'libiberty/cplus-dem.c')
-rw-r--r--libiberty/cplus-dem.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/libiberty/cplus-dem.c b/libiberty/cplus-dem.c
index 53549caf962..ff72322fc20 100644
--- a/libiberty/cplus-dem.c
+++ b/libiberty/cplus-dem.c
@@ -927,11 +927,11 @@ cplus_demangle (mangled, options)
ELEMENT_SIZE, grow it to contain at least MIN_SIZE objects,
updating *OLD_VECT and *SIZE as necessary. */
static void
-DEFUN (grow_vect, (old_vect, size, min_size, element_size),
- void** old_vect
- AND size_t* size
- AND size_t min_size
- AND int element_size)
+grow_vect (old_vect, size, min_size, element_size)
+ void** old_vect;
+ size_t* size;
+ size_t min_size;
+ int element_size;
{
if (*size < min_size) {
*size *= 2;
@@ -951,9 +951,9 @@ DEFUN (grow_vect, (old_vect, size, min_size, element_size),
The resulting string is valid until the next call of ada_demangle.
*/
static char *
-DEFUN (ada_demangle, (mangled, style, option),
- const char* mangled
- AND int option ATTRIBUTE_UNUSED)
+ada_demangle (mangled, option)
+ const char* mangled;
+ int option;
{
int i, j;
int len0;