** Prototypes without named arguments not parsed correctly: foo(double[]). This test WAS done with the fixed (that is, re-fixed) addToExprList. INPUT: void foo (double x[]); void bar (double []); /* This function takes an array of doubles */ OUTPUT: void foo(double x[]); void bar(double ); /* This one does not :-( */