MCPcopy Create free account
hub / github.com/FastLED/FastLED / exit

Function exit

src/fl/system/exit.h:8–11  ·  view source on GitHub ↗

@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.

Source from the content-addressed store, hash-verified

6/// In embedded environments, calling exit is typically not meaningful,
7/// so this is a placeholder that does nothing.
8inline void exit(int code) {
9 (void)code; // Suppress unused parameter warning
10 // No-op: intentionally does nothing
11}
12
13} // namespace fl

Callers 11

parseArgsFunction · 0.85
mainFunction · 0.85
main.tsFile · 0.85
crash_handlerFunction · 0.85
crash_handlerFunction · 0.85
crash_handlerFunction · 0.85
maybeRegisterStubAutorunFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected