I found some early C sources code, that I wrote, in the days I was beginning C, in 1987.
C is written with declarations of this kind:
myFunction(c, v)
char c;
int v;
{
...
}
And I wonder if there is still a compiler available on Linux today (I'm on Debian 10) able to compile such old code.