| OLD | NEW |
| 1 #ifdef PROTOTYPES | 1 #ifdef PROTOTYPES |
| 2 int main (int argc, char **argv, char **envp) | 2 int main (int argc, char **argv, char **envp) |
| 3 #else | 3 #else |
| 4 main (argc, argv, envp) | 4 main (argc, argv, envp) |
| 5 int argc; | 5 int argc; |
| 6 char **argv; | 6 char **argv; |
| 7 char **envp; | 7 char **envp; |
| 8 #endif | 8 #endif |
| 9 { | 9 { |
| 10 extern void dummy(); | 10 extern void dummy(); |
| 11 #ifdef usestubs | |
| 12 set_debug_traps(); | |
| 13 breakpoint(); | |
| 14 #endif | |
| 15 dummy(); | 11 dummy(); |
| 16 return 0; | 12 return 0; |
| 17 | 13 |
| 18 } | 14 } |
| 19 | 15 |
| 20 /* We put main() right up front so its line number doesn't keep changing. */ | 16 /* We put main() right up front so its line number doesn't keep changing. */ |
| 21 | 17 |
| 22 /* | 18 /* |
| 23 * Test file with lots of different types, for testing the | 19 * Test file with lots of different types, for testing the |
| 24 * "whatis" command. | 20 * "whatis" command. |
| (...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 250 v_double_pointer = &v_double; | 246 v_double_pointer = &v_double; |
| 251 | 247 |
| 252 color = red; | 248 color = red; |
| 253 clunker = porsche; | 249 clunker = porsche; |
| 254 | 250 |
| 255 u_link.next = s_link; | 251 u_link.next = s_link; |
| 256 | 252 |
| 257 v_struct2.v_int_member = v_struct1.v_int_member; | 253 v_struct2.v_int_member = v_struct1.v_int_member; |
| 258 v_union2.v_short_member = v_union.v_short_member; | 254 v_union2.v_short_member = v_union.v_short_member; |
| 259 } | 255 } |
| OLD | NEW |