mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-03 04:12:10 +08:00
17 lines
129 B
C
17 lines
129 B
C
int nothing ()
|
|
|
|
{
|
|
int x = 3 ;
|
|
return x ;
|
|
}
|
|
|
|
|
|
main ()
|
|
|
|
{
|
|
int y ;
|
|
|
|
y = nothing () ;
|
|
printf ("hello\n") ;
|
|
}
|