/** Copyright (c) 2006 Freescale Semiconductor Freescale Confidential Proprietary \file FslTypes.h \brief Standard type definition as defined by the C coding Standard. \author Freescale Semiconductor \author \author Guadalajara Applications Laboratory RTAC Americas \version 1.0 \date 3/Nov/2006 \warning * History: */ /*****************************************************************************/ #ifndef __FslTypes #define __FslTypes typedef unsigned char UINT8; /* unsigned 8 bit definition */ typedef unsigned short UINT16; /* unsigned 16 bit definition*/ typedef unsigned long UINT32; /* unsigned 32 bit definition*/ typedef signed char INT8; /* signed 8 bit definition */ typedef short INT16; /* signed 16 bit definition */ typedef long int INT32; /* signed 32 bit definition */ #define NULL ((void *) 0) /*****************************************************************************/ #endif /* __FslTypes */