I am looking at a C program from 1986 (ESPRESSO by R. Rudell). The function espresso
begins as follows:
pcover espresso(F, D1, R)
pcover F, D1, R;
{
pcover E, D, Fsave;
pset last, p;
cost_t cost, best_cost;
begin:
Fsave = ...
...
...
}
What's the meaning of begin
? I've never seen it before. Vim highlights it as a keyword.