diff options
author | unknown <mats@mysql.com> | 2006-04-11 20:31:02 +0200 |
---|---|---|
committer | unknown <mats@mysql.com> | 2006-04-11 20:31:02 +0200 |
commit | dfd2fd780abc6cf1282fec114dee1a4068c0dafa (patch) | |
tree | 93aeefa9a246fbe679f782f85084837e07516e62 /include/my_bitmap.h | |
parent | a14de3b2dbed4f3ec84d73f30266c0d9294f30c7 (diff) | |
download | mariadb-git-dfd2fd780abc6cf1282fec114dee1a4068c0dafa.tar.gz |
Added missing prototypes to mysys/my_bitmap.h
include/my_bitmap.h:
Added missing prototypes.
Diffstat (limited to 'include/my_bitmap.h')
-rw-r--r-- | include/my_bitmap.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/my_bitmap.h b/include/my_bitmap.h index 8afeb1b8107..428ca7dc702 100644 --- a/include/my_bitmap.h +++ b/include/my_bitmap.h @@ -60,6 +60,8 @@ extern void bitmap_set_prefix(MY_BITMAP *map, uint prefix_size); extern void bitmap_intersect(MY_BITMAP *map, const MY_BITMAP *map2); extern void bitmap_subtract(MY_BITMAP *map, const MY_BITMAP *map2); extern void bitmap_union(MY_BITMAP *map, const MY_BITMAP *map2); +extern void bitmap_xor(MY_BITMAP *map, const MY_BITMAP *map2); +extern void bitmap_invert(MY_BITMAP *map); extern uint bitmap_lock_set_next(MY_BITMAP *map); extern void bitmap_lock_clear_bit(MY_BITMAP *map, uint bitmap_bit); |