• Main Page
  • Modules
  • Index
  • File List
  • Globals

compiler/c51/stdint.h

Go to the documentation of this file.
00001 /* Copyright (c) 2007 Nordic Semiconductor. All Rights Reserved.
00002  *
00003  * The information contained herein is property of Nordic Semiconductor ASA.
00004  * Terms and conditions of usage are described in detail in NORDIC
00005  * SEMICONDUCTOR STANDARD SOFTWARE LICENSE AGREEMENT. 
00006  *
00007  * Licensees are granted free, non-transferable use of the information. NO
00008  * WARRENTY of ANY KIND is provided. This heading must NOT be removed from
00009  * the file.
00010  *
00011  * $LastChangedRevision: 186 $
00012  */
00013 
00024 #ifndef __STDINT_H__
00025 #define __STDINT_H__
00026 
00027 #ifdef __C51__
00028 
00029 typedef unsigned char uint8_t;        
00030 
00031 typedef signed char int8_t;          
00032 
00033 typedef unsigned int uint16_t;        
00034 
00035 typedef signed int int16_t;          
00036 
00037 typedef unsigned long uint32_t;       
00038 
00039 typedef signed long int32_t;         
00040 
00041 #endif // __C51__
00042 
00043 #ifndef NULL
00044 #define NULL (void*)0
00045 #endif
00046 
00047 #endif // __STDINT_H__

Generated on Fri Apr 20 2012 14:11:44 for nRFGo SDK by  doxygen 1.7.2