| 977 | } |
| 978 | |
| 979 | const void* returnConstPointerValueOrDefault_c(const void * defaultValue) |
| 980 | { |
| 981 | if (!hasReturnValue_c()) { |
| 982 | return defaultValue; |
| 983 | } |
| 984 | return constPointerReturnValue_c(); |
| 985 | } |
| 986 | |
| 987 | void (*functionPointerReturnValue_c())() |
| 988 | { |
nothing calls this directly
no test coverage detected