Listing 2 A 16/32-bit portability pitfall

typedef unsigned short WORD;

int function()
{
       WORD wOne;
       int nTwo;
       ...
       wTwo = (WORD)nOne;
       ...
}
// End of File