www.pudn.com > lpc.zip > ourstuff.h


/********************************************************************
*
*  This file contains defines and stuff added by us, SOJ inc.
*
********************************************************************/


/* Define int_type to be either a 16 or 32 bit int.  */

#ifdef INT16
typedef short int int_type;
typedef int long_type;
#else
typedef int int_type;
typedef long long_type;
#endif /* INT16 */