summaryrefslogtreecommitdiff
path: root/include/my_bitmap.h
diff options
context:
space:
mode:
authorunknown <mats@mysql.com>2006-04-11 20:31:02 +0200
committerunknown <mats@mysql.com>2006-04-11 20:31:02 +0200
commitdfd2fd780abc6cf1282fec114dee1a4068c0dafa (patch)
tree93aeefa9a246fbe679f782f85084837e07516e62 /include/my_bitmap.h
parenta14de3b2dbed4f3ec84d73f30266c0d9294f30c7 (diff)
downloadmariadb-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.h2
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);