2008-10-12 18:41:06 +02:00
|
|
|
int bar();
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
int main(int ac, char** av)
|
|
|
|
{
|
|
|
|
(void)ac;
|
|
|
|
(void)av;
|
|
|
|
int ret = bar();
|
|
|
|
printf("bar = %d\n", ret);
|
2016-07-09 11:21:54 +02:00
|
|
|
if (ret == 10) {
|
2008-10-12 18:41:06 +02:00
|
|
|
return 0;
|
2016-07-09 11:21:54 +02:00
|
|
|
}
|
2008-10-12 18:41:06 +02:00
|
|
|
return -1;
|
|
|
|
}
|