SLAU132V October 2004 – February 2020
The FUNC_NEVER_RETURNS pragma specifies to the compiler that the function never returns to its caller.
The pragma must appear before any declaration or reference to the function that you want to keep. In C, the argument func is the name of the function that does not return. In C++, the pragma applies to the next function declared.
The syntax of the pragma in C is:
#pragma FUNC_NEVER_RETURNS (func) |
The syntax of the pragma in C++ is:
#pragma FUNC_NEVER_RETURNS |