16 lines
102 B
Text
16 lines
102 B
Text
|
|
void
|
||
|
|
f1(integer a)
|
||
|
|
{
|
||
|
|
if (a) {
|
||
|
|
exit(1);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
integer
|
||
|
|
main(void)
|
||
|
|
{
|
||
|
|
f1(3);
|
||
|
|
|
||
|
|
return 0;
|
||
|
|
}
|