Thu May 21 13:14:25 1998 John Metzler <jmetzler@cygnus.com>
[deliverable/binutils-gdb.git] / gdb / jv-exp.y
index 852b4d09e23c2a4120022d4a9152c883172c4800..828a557e4ffe457c47d52bbe6068540c84cc9b99 100644 (file)
@@ -1406,7 +1406,9 @@ push_expression_name (name)
    into a freshly malloc'ed struct expression.  Its language_defn is set
    to null.  */
 static struct expression *
-copy_exp (struct expression *expr, int endpos)
+copy_exp (expr, endpos)
+     struct expression *expr;
+     int endpos;
 {
   int len = length_of_subexp (expr, endpos);
   struct expression *new
@@ -1420,8 +1422,9 @@ copy_exp (struct expression *expr, int endpos)
 
 /* Insert the expression NEW into the current expression (expout) at POS.  */
 static void
-insert_exp (int pos,
-           struct expression *new)
+insert_exp (pos, new)
+     int pos;
+     struct expression *new;
 {
   int newlen = new->nelts;
 
This page took 0.022726 seconds and 4 git commands to generate.