Projet_SETI_RISC-V/riscv-gnu-toolchain/binutils/gdb/testsuite/gdb.base/twice.c
2023-03-06 14:48:14 +01:00

17 lines
161 B
C

#include <stdio.h>
int nothing ()
{
int x = 3 ;
return x ;
}
int main ()
{
int y ;
y = nothing () ;
printf ("hello\n") ;
return 0;
}