[comp.lang.c] ANSI C -> C function arguments declaration

expc66@castle.ed.ac.uk (Ulf Dahlen) (07/16/90)

Is there a program/script that converts ANSI-style C function arguments
declaration to old style declaration?

double foo(long x, double y)      ->      double foo(x, y)
                                             long x;
                                             double y;


--Ulf Dahlen
Linkoping University, Sweden
uda@ida.liu.se