~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/mf_radix.c

Replacing all bzero() calls with memset() calls and removing the bzero.c file.
Also removing check for bzero from the 'configure.ac' autoconf file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
  end=base+number_of_elements; count_end=count+256;
35
35
  for (pass=(int) size_of_element-1 ; pass >= 0 ; pass--)
36
36
  {
37
 
    bzero((uchar*) count,sizeof(uint32_t)*256);
 
37
    memset((uchar*) count, 0, sizeof(uint32_t)*256);
38
38
    for (ptr= base ; ptr < end ; ptr++)
39
39
      count[ptr[0][pass]]++;
40
40
    if (count[0] == number_of_elements)