~thomir-deactivatedaccount/drizzle/drizzle-fix-bug653747

« back to all changes in this revision

Viewing changes to strings/strto.c

Merged from codestyle.

Show diffs side-by-side

added added

removed removed

Lines of Context:
49
49
#undef strtoul
50
50
#undef strtol
51
51
#ifdef USE_LONGLONG
52
 
#define UTYPE_MAX (~(ulonglong) 0)
 
52
#define UTYPE_MAX (~(uint64_t) 0)
53
53
#define TYPE_MIN LONGLONG_MIN
54
54
#define TYPE_MAX LONGLONG_MAX
55
 
#define longtype longlong
56
 
#define ulongtype ulonglong
 
55
#define longtype int64_t
 
56
#define ulongtype uint64_t
57
57
#ifdef USE_UNSIGNED
58
58
#define function ulongtype strtoull
59
59
#else