~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/my_bitmap.c

Merged build changes from Antony.

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
*/
37
37
 
38
38
#include "mysys_priv.h"
39
 
#include <my_bitmap.h>
40
 
#include <m_string.h>
41
 
#include <my_bit.h>
 
39
#include <mysys/my_bitmap.h>
 
40
#include <mystrings/m_string.h>
 
41
#include <mysys/my_bit.h>
42
42
 
43
43
void create_last_word_mask(MY_BITMAP *map)
44
44
{
247
247
  if ((prefix_bits= prefix_size & 7))
248
248
    *m++= (1 << prefix_bits)-1;
249
249
  if ((d= no_bytes_in_map(map)-prefix_bytes))
250
 
    bzero(m, d);
 
250
    memset(m, 0, d);
251
251
}
252
252
 
253
253