Production code calls to the methods we stubbed */
| 22 | |
| 23 | /* Production code calls to the methods we stubbed */ |
| 24 | static int productionCodeFooCalls() |
| 25 | { |
| 26 | int return_value; |
| 27 | return_value = foo("value_string", 10); |
| 28 | (void)return_value; |
| 29 | return_value = foo("value_string", 10); |
| 30 | return return_value; |
| 31 | } |
| 32 | |
| 33 | static void productionCodeBarCalls() |
| 34 | { |