@brief No-op exit function for embedded systems In embedded environments, calling exit is typically not meaningful, so this is a placeholder that does nothing.
| 6 | /// In embedded environments, calling exit is typically not meaningful, |
| 7 | /// so this is a placeholder that does nothing. |
| 8 | inline void exit(int code) { |
| 9 | (void)code; // Suppress unused parameter warning |
| 10 | // No-op: intentionally does nothing |
| 11 | } |
| 12 | |
| 13 | } // namespace fl |
no outgoing calls
no test coverage detected