cbc/test/funcall2.cb

12 lines
97 B
Plaintext

int
main(int argc, char **argv)
{
return f(999, 0);
}
int
f(int i, int j)
{
return j;
}