Abraxas/ECS C++ Home  Table of Contents 

Module - 75.html

ABRAXAS SOFTWARE - CodeCheck ECS C++ Test-Suite ECS C++.

ECS C++-C Test Suite for Module - 75.cpp

/*

75. Use portable types for portable code.

*/

// bad over-riding #include

typedef short int16;    
typedef long int32;
/* 

will generate the above for you automatically this make's portable code!

It's best to #include and then let your compiler create the types for you.

*/

Abraxas/ECS C++ Home  Table of Contents

ABRAXAS SOFTWARE - CodeCheck ECS C++ Test-Suite ECS C++