summaryrefslogtreecommitdiff
path: root/gdb/typeprint.c
diff options
context:
space:
mode:
authorKevin Buettner <kevinb@redhat.com>2000-05-28 01:12:42 +0000
committerKevin Buettner <kevinb@redhat.com>2000-05-28 01:12:42 +0000
commita14ed312fd86dd2c862847230931451da2e49942 (patch)
treee7a00cec4f6ebd4b2d5dd59695c802ef6997d9da /gdb/typeprint.c
parent3c07fb76e69e648d58d507fdb05cf8d461d87dcb (diff)
downloadbinutils-gdb-a14ed312fd86dd2c862847230931451da2e49942.tar.gz
PARAMS removal.
Diffstat (limited to 'gdb/typeprint.c')
-rw-r--r--gdb/typeprint.c14
1 files changed, 5 insertions, 9 deletions
diff --git a/gdb/typeprint.c b/gdb/typeprint.c
index 9050e82afcf..249f213794e 100644
--- a/gdb/typeprint.c
+++ b/gdb/typeprint.c
@@ -39,19 +39,15 @@
extern int objectprint; /* Controls looking up an object's derived type
using what we find in its vtables. */
-extern void _initialize_typeprint PARAMS ((void));
+extern void _initialize_typeprint (void);
-static void
-ptype_command PARAMS ((char *, int));
+static void ptype_command (char *, int);
-static struct type *
- ptype_eval PARAMS ((struct expression *));
+static struct type *ptype_eval (struct expression *);
-static void
-whatis_command PARAMS ((char *, int));
+static void whatis_command (char *, int);
-static void
-whatis_exp PARAMS ((char *, int));
+static void whatis_exp (char *, int);
/* Print a description of a type TYPE in the form of a declaration of a
variable named VARSTRING. (VARSTRING is demangled if necessary.)