| 129 | static int global_i = 1; |
| 130 | |
| 131 | int *get_new_int() |
| 132 | { |
| 133 | return &global_i; |
| 134 | } |
| 135 | |
| 136 | // MSVC doesn't like that we are using C++ return types from our C declared module |
| 137 | // but this is the best way to do it for cross platform compatibility |
nothing calls this directly
no outgoing calls
no test coverage detected