#ifndef IntTypes_h #define IntTypes_h #ifdef __sun // Not sure if there are newer versions that support C99 headers. The // needed features are implemented in the headers below though: # include # include # include #else # include # include #endif #include #ifndef PRIu64 #define PRIu64 "lu" #define PRIi64 "ld" #endif //================================================================================================= #endif