]>
Commit | Line | Data |
---|---|---|
085dd6e6 | 1 | #include <stdio.h> |
c906108c SS |
2 | int nothing () |
3 | ||
4 | { | |
5 | int x = 3 ; | |
6 | return x ; | |
7 | } | |
8 | ||
9 | ||
085dd6e6 | 10 | int main () |
c906108c SS |
11 | |
12 | { | |
13 | int y ; | |
14 | #ifdef usestubs | |
15 | set_debug_traps(); | |
16 | breakpoint(); | |
17 | #endif | |
18 | y = nothing () ; | |
19 | printf ("hello\n") ; | |
085dd6e6 | 20 | return 0; |
c906108c | 21 | } |