#include "hardware.h"




extern unsigned char Get_sizeof_Test_struct(void);

int main(void)
{
unsigned char len;

_EINT();             // enable interrupts


// Install : mspgcc-20050422.exe (32-bit Windows)
//
for(;;)
  {              //infinite loop
  len = Get_sizeof_Test_struct();
  // the return value is 18 !
  // and the real size of the structure is 17 Bytes.
  }
}
