~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to strings/my_strtoll10.c

  • Committer: Brian Aker
  • Date: 2008-07-07 14:25:25 UTC
  • mto: (77.1.25 codestyle)
  • mto: This revision was merged to the branch mainline in revision 82.
  • Revision ID: brian@tangent.org-20080707142525-xzy2nl3ie2ebwfln
LL() cleanup

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
#else
29
29
#define ULONGLONG_MAX           (~(ulonglong) 0)
30
30
#endif /* __NETWARE__ && __MWERKS__ */
31
 
#define MAX_NEGATIVE_NUMBER     ((ulonglong) LL(0x8000000000000000))
 
31
#define MAX_NEGATIVE_NUMBER     ((ulonglong) 0x8000000000000000LL)
32
32
#define INIT_CNT  9
33
 
#define LFACTOR   ULL(1000000000)
34
 
#define LFACTOR1  ULL(10000000000)
35
 
#define LFACTOR2  ULL(100000000000)
 
33
#define LFACTOR   1000000000ULL
 
34
#define LFACTOR1  10000000000ULL
 
35
#define LFACTOR2  100000000000ULL
36
36
 
37
37
static unsigned long lfactor[9]=
38
38
{