* @brief Library destructor for platforms supporting destructor attribute. * * This function is called when the library is unloaded. */
| 96 | * This function is called when the library is unloaded. |
| 97 | */ |
| 98 | static void __attribute__ ((destructor)) libEnd(void) |
| 99 | { |
| 100 | CloseDebugFiles(); |
| 101 | } |
| 102 | |
| 103 | #endif |
| 104 |
nothing calls this directly
no test coverage detected