r1.sh
gcc R_01_01.c R_01_02.c R_01_03.c R_01_support.c R_01_system.c -o R1.exe
R_01_system.c
/*
* Release: 2016-11-01
*
* Example from MISRA C:2012 ( THIS IS NOT A TEST SUITE )
*
* Copyright HORIBA MIRA Limited.
*
* See file READ_ME.txt for full copyright, license and release instructions.
*/
#include "misrac2012.h"
#include "mc3_types.h"
#include "mc3_header.h"
char * msg =" R1 misrac2012\n";
int main ( void )
{
R_1_main_support ( );
PR1(msg,s);
return EXIT_SUCCESS;
}
/* end of R_01_system.c */