| 830 | } |
| 831 | |
| 832 | int returnIntValueOrDefault_c(int defaultValue) |
| 833 | { |
| 834 | if (!hasReturnValue_c()) { |
| 835 | return defaultValue; |
| 836 | } |
| 837 | return intReturnValue_c(); |
| 838 | } |
| 839 | |
| 840 | unsigned int unsignedIntReturnValue_c() |
| 841 | { |
nothing calls this directly
no test coverage detected