Subversion Repositories Kolibri OS

Rev

Rev 4921 | Rev 6099 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4921 Rev 4930
Line 175... Line 175...
175
/* 64-bit types */
175
/* 64-bit types */
176
#if __have_long64
176
#if __have_long64
177
#define __PRI64(x) __STRINGIFY(l##x)
177
#define __PRI64(x) __STRINGIFY(l##x)
178
#define __SCN64(x) __STRINGIFY(l##x)
178
#define __SCN64(x) __STRINGIFY(l##x)
179
#elif __have_longlong64
179
#elif __have_longlong64
180
#define __PRI64(x) __STRINGIFY(ll##x)
180
#define __PRI64(x) __STRINGIFY(I64##x)
181
#define __SCN64(x) __STRINGIFY(ll##x)
181
#define __SCN64(x) __STRINGIFY(I64##x)
182
#else
182
#else
183
#define __PRI64(x) __STRINGIFY(x)
183
#define __PRI64(x) __STRINGIFY(x)
184
#define __SCN64(x) __STRINGIFY(x)
184
#define __SCN64(x) __STRINGIFY(x)
185
#endif
185
#endif