Abraxas/Misra Home  Table of Contents

Module - m74.html

ABRAXAS SOFTWARE - CodeCheck MISRA Test-Suite Misra-C:1998 Misra-C:2004.

Misra-C Test Suite for Module - m74.c

/* Misra C Enforcement Testing */

Misra C Enforcement Testing */

/* Rule 74: Required */

Rule 74: Required */

/* If identifiers are given for any of the parameters, then the */

If identifiers are given for any of the parameters, then the */

/* identifiers used in the declaration and definition shall be */

identifiers used in the declaration and definition shall be */

/* identical. */

identical. */
#include "misra.h"
static SI_32 func74a ( SI_32, UI_32 ) ;
static SI_32 func74b ( SI_32 a, UI_32 b ) ;
static SI_32
func74a ( SI_32 a, UI_32 b ) 



Function Name: func74a()

{
    
    return a;
    
}
static SI_32
func74b ( SI_32 c, UI_32 d ) /*  RULE 74  */



Function Name: func74b()

{
    
    return c;
    
}

Abraxas/Misra Home  Table of Contents

ABRAXAS SOFTWARE - CodeCheck MISRA Test-Suite Misra-C:1998 Misra-C:2004.