1

I have this:

char *
foo(a,b)
int a;
int b;
{
...
}

I want this:

char *
foo(a,b)
    int a;// indented 
    int b;// indented
{
...
}

The indenting works for function body code but I cannot find an option to make this style of argument (old style code being resurrected) indented.

Which directive can do this? I have tried all that seem remotely appropriate.

genpfault
  • 51,148
  • 11
  • 85
  • 139
oldunixguy
  • 31
  • 3

0 Answers0