Package Index Table of Contents
/*
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 #includeand then let your compiler create the types for you.
*/
Package Index Table of Contents