Fix zero_ext documentation
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.base / twice.c
1 #include <stdio.h>
2 int nothing ()
3
4 {
5 int x = 3 ;
6 return x ;
7 }
8
9
10 int main ()
11
12 {
13 int y ;
14 y = nothing () ;
15 printf ("hello\n") ;
16 return 0;
17 }
This page took 0.033882 seconds and 4 git commands to generate.