~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mystrings/my_strtoll10.c

  • Committer: Brian Aker
  • Date: 2008-10-12 01:59:02 UTC
  • Revision ID: brian@tangent.org-20081012015902-prhy6wsimdqr28om
Dead code around unsigned (first pass)

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
#define LFACTOR1  10000000000ULL
23
23
#define LFACTOR2  100000000000ULL
24
24
 
25
 
static unsigned long lfactor[9]=
 
25
static uint64_t lfactor[9]=
26
26
{
27
27
  1L, 10L, 100L, 1000L, 10000L, 100000L, 1000000L, 10000000L, 100000000L
28
28
};