summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAidan Skinner <aidan@velvet.net>2002-09-08 17:44:22 +0000
committerAidan Skinner <aidan@velvet.net>2002-09-08 17:44:22 +0000
commitcf9875dbf11f357fa715bda8ac4e393b110acdc3 (patch)
treed99ca2ecb573ac6c4e72bfa91d03199402fa5d38
parent7d7d0746c0211b28e3958362a5dc810f2d610dad (diff)
downloadgdb-cf9875dbf11f357fa715bda8ac4e393b110acdc3.tar.gz
* ada-lang.c (ada_array_bound, ada_type_match,
_initialize_ada_language): Fix K&R definitions. * ada-tasks.c (get_current_task): Fix K&R definitions. * ada-valprint.c (adjust_type_signedness): Fix K&R definitions.
-rw-r--r--gdb/ChangeLog7
-rw-r--r--gdb/ada-lang.c12
-rw-r--r--gdb/ada-tasks.c4
-rw-r--r--gdb/ada-valprint.c3
4 files changed, 13 insertions, 13 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 8b41219ad75..24e04b8c9df 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,10 @@
+2002-09-08 Aidan Skinner <aidan@velvet.net>
+
+ * ada-lang.c (ada_array_bound, ada_type_match,
+ _initialize_ada_language): Fix K&R definitions.
+ * ada-tasks.c (get_current_task): Fix K&R definitions.
+ * ada-valprint.c (adjust_type_signedness): Fix K&R definitions.
+
2002-09-07 Christopher Faylor <cgf@redhat.com>
* MAINTAINERS: Remove CE from list of maintainership responsibilities.
diff --git a/gdb/ada-lang.c b/gdb/ada-lang.c
index c58d46338ea..2838df7e68c 100644
--- a/gdb/ada-lang.c
+++ b/gdb/ada-lang.c
@@ -1852,10 +1852,7 @@ ada_array_bound_from_type (struct type * arr_type, int n, int which,
supplied by run-time quantities other than discriminants. */
struct value *
-ada_array_bound (arr, n, which)
- struct value *arr;
- int n;
- int which;
+ada_array_bound (struct value *arr, int n, int which)
{
struct type *arr_type = VALUE_TYPE (arr);
@@ -2334,10 +2331,7 @@ ada_resolve_subexp (struct expression **expp, int *pos, int deprocedure_p,
liberal. FIXME: TOO liberal, in fact. */
static int
-ada_type_match (ftype, atype, may_deref)
- struct type *ftype;
- struct type *atype;
- int may_deref;
+ada_type_match (struct type *ftype, struct type *atype, int may_deref)
{
CHECK_TYPEDEF (ftype);
CHECK_TYPEDEF (atype);
@@ -8104,7 +8098,7 @@ const struct language_defn ada_language_defn = {
};
void
-_initialize_ada_language ()
+_initialize_ada_language (void)
{
builtin_type_ada_int =
init_type (TYPE_CODE_INT, TARGET_INT_BIT / TARGET_CHAR_BIT,
diff --git a/gdb/ada-tasks.c b/gdb/ada-tasks.c
index cc9f67f61c2..e14a58a38e7 100644
--- a/gdb/ada-tasks.c
+++ b/gdb/ada-tasks.c
@@ -4,7 +4,7 @@
.
This file is part of GDB.
- [$Id: ada-tasks.c,v 1.3 2002/07/20 16:08:19 aidan Exp $]
+ [$Id: ada-tasks.c,v 1.4 2002/08/18 18:07:22 aidan Exp $]
Authors: Roch-Alexandre Nomine Beguin, Arnaud Charlet <charlet@gnat.com>
This program is free software; you can redistribute it and/or modify
@@ -270,7 +270,7 @@ get_self_id (void)
}
int
-get_current_task ()
+get_current_task (void)
{
int result;
diff --git a/gdb/ada-valprint.c b/gdb/ada-valprint.c
index fc2db703035..0a0c99add1e 100644
--- a/gdb/ada-valprint.c
+++ b/gdb/ada-valprint.c
@@ -75,8 +75,7 @@ static int ada_val_print_1 (struct type *, char *, int, CORE_ADDR,
/* Make TYPE unsigned if its range of values includes no negatives. */
static void
-adjust_type_signedness (type)
- struct type *type;
+adjust_type_signedness (struct type *type)
{
if (type != NULL && TYPE_CODE (type) == TYPE_CODE_RANGE
&& TYPE_LOW_BOUND (type) >= 0)