1999-06-28 18:06:02 +02:00
|
|
|
#include <stdio.h>
|
1999-04-16 03:35:26 +02:00
|
|
|
int nothing ()
|
|
|
|
|
|
|
|
{
|
|
|
|
int x = 3 ;
|
|
|
|
return x ;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-06-28 18:06:02 +02:00
|
|
|
int main ()
|
1999-04-16 03:35:26 +02:00
|
|
|
|
|
|
|
{
|
|
|
|
int y ;
|
|
|
|
y = nothing () ;
|
|
|
|
printf ("hello\n") ;
|
1999-06-28 18:06:02 +02:00
|
|
|
return 0;
|
1999-04-16 03:35:26 +02:00
|
|
|
}
|