| 856 | } |
| 857 | |
| 858 | long int returnLongIntValueOrDefault_c(long int defaultValue) |
| 859 | { |
| 860 | if (!hasReturnValue_c()) { |
| 861 | return defaultValue; |
| 862 | } |
| 863 | return longIntReturnValue_c(); |
| 864 | } |
| 865 | |
| 866 | unsigned long int unsignedLongIntReturnValue_c() |
| 867 | { |
nothing calls this directly
no test coverage detected