Abraxas/Misra Home Table of Contents
int f86() ; /* here prototype indicates that return contains data that must be tested */
Function Name: m86()
int m86() {int x;x = f86(); /* RULE 86 */x++; /* bad, x not tested before using x */x = f86();if ( x > 0 ) x++; /* good */
}
Abraxas/Misra Home Table of Contents