1 2 3 4 5 6 7 8 9 10
#ifndef IC_SQLITE_INTTYPES_H #define IC_SQLITE_INTTYPES_H #include <stdint.h> #define PRId64 "lld" #define PRIu64 "llu" #define PRIx64 "llx" #endif