#ifndef __PORTTYPE_H #define __PORTTYPES_H //character types typedef unsigned char uchar; typedef signed char schar; //fixed-bitwidth integral types typedef unsigned char uint8; typedef signed char sint8; typedef unsigned short uint16; typedef short sint16; typedef unsigned long uint32; typedef long sint32; #endif