Commit dc544d2c by Jeffrey A Law Committed by Jeff Law

objc-act.c (encode_aggregate_within): Avoid GNU extensions in prototype and definition.

        * objc/objc-act.c (encode_aggregate_within): Avoid GNU extensions
        in prototype and definition.

From-SVN: r19016
parent 38c413cd
Mon Apr 6 02:03:29 1998 Jeffrey A Law (law@cygnus.com)
* objc/objc-act.c (encode_aggregate_within): Avoid GNU extensions
in prototype and definition.
Mon Apr 6 00:48:56 PDT 1998 Jeff Law (law@cygnus.com)
* version.c: Bump for snapshot.
......
......@@ -196,7 +196,7 @@ static void generate_static_references PROTO((void));
static int check_methods_accessible PROTO((tree, tree,
int));
static void encode_aggregate_within PROTO((tree, int, int,
char, char));
int, int));
/* We handle printing method names ourselves for ObjC */
extern char *(*decl_printable_name) ();
......@@ -6552,8 +6552,8 @@ encode_aggregate_within (type, curtype, format, left, right)
tree type;
int curtype;
int format;
char left;
char right;
int left;
int right;
{
if (obstack_object_size (&util_obstack) > 0
&& *(obstack_next_free (&util_obstack) - 1) == '^')
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment