~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to strings/str2int.c

  • Committer: Jay Pipes
  • Date: 2008-07-17 19:11:14 UTC
  • mto: This revision was merged to the branch mainline in revision 182.
  • Revision ID: jay@mysql.com-20080717191114-gzmhr3vgsr01fslw
Removal of DBUG from strings/ library

Show diffs side-by-side

added added

removed removed

Lines of Context:
65
65
  *val = 0;
66
66
 
67
67
  /*  Check that the radix is in the range 2..36  */
68
 
 
69
 
#ifndef DBUG_OFF
70
68
  if (radix < 2 || radix > 36) {
71
69
    errno=EDOM;
72
70
    return NullS;
73
71
  }
74
 
#endif
75
72
 
76
73
  /*  The basic problem is: how do we handle the conversion of
77
74
      a number without resorting to machine-specific code to