rootana_stdint.h

Go to the documentation of this file.
00001 #ifndef INCLUDE_rootana_stdintH
00002 #define INCLUDE_rootana_stdintH
00003 
00004 // We have to make our own definitions of uint32_t and uint16_t, since
00005 // rootcint (ROOT 5) on Macos 10.0 doesn't want to process stdint.h
00006 // T. Lindner 
00007 
00008 #if defined(OS_DARWIN) && defined(HAVE_ROOT)
00009 
00010 #ifndef _UINT32_T
00011 #define _UINT32_T
00012 typedef unsigned int uint32_t;
00013 #endif /* _UINT32_T */
00014 
00015 #ifndef _UINT16_T
00016 #define _UINT16_T
00017 typedef unsigned short uint16_t;
00018 #endif /* _UINT16_T */
00019 
00020 
00021 #else
00022 
00023 #include <stdint.h>
00024 
00025 #endif
00026 
00027 
00028 #endif

Generated on 12 Feb 2016 for ROOT Analyzer by  doxygen 1.6.1