00001 00007 #ifndef __DENDRO_H__ 00008 #define __DENDRO_H__ 00009 00010 #ifdef __USE_64_BIT_INT__ 00011 #define DendroIntL long long 00012 #define DendroIntLSpecifier %lld 00013 #define DendroUIntLSpecifier %llu 00014 #else 00015 #define DendroIntL int 00016 #define DendroIntLSpecifier %d 00017 #define DendroUIntLSpecifier %u 00018 #endif 00019 00020 #endif 00021