+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.
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);
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);
};
void
-_initialize_ada_language ()
+_initialize_ada_language (void)
{
builtin_type_ada_int =
init_type (TYPE_CODE_INT, TARGET_INT_BIT / TARGET_CHAR_BIT,
/* 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)