| 843 | } |
| 844 | |
| 845 | unsigned int returnUnsignedIntValueOrDefault_c(unsigned int defaultValue) |
| 846 | { |
| 847 | if (!hasReturnValue_c()) { |
| 848 | return defaultValue; |
| 849 | } |
| 850 | return unsignedIntReturnValue_c(); |
| 851 | } |
| 852 | |
| 853 | long int longIntReturnValue_c() |
| 854 | { |
nothing calls this directly
no test coverage detected