Package Index  Table of Contents

CodeCheck ECS C/C++ to Test Suite - 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.
*/

Package Index  Table of Contents

CodeCheck Copyright (c) 1988-2005 by Abraxas Software Inc. (R). All rights reserved.