4.3.9 __no_init Keyword

Object is placed in non-volatile memory and thus the initialization of the variable is suppressed.

Suggested Replacement

__attribute__((persistent))

Caveats

None.

Examples

Consider migrating IAR code such as:
__no_init int myarray[10]; 
to MPLAB XC codes similar to:
__attribute__((persistent)) int my array[10]; 

Further Information

None.