]> mj.ucw.cz Git - libucw.git/blobdiff - ucw/bitops.h
Doc: Documented growing arrays, generic allocators and related things
[libucw.git] / ucw / bitops.h
index 9e5e5df8b2be75761bcf70cd7e425860d6f62f52..ffc788c5f1b60f58d230f6593893d0a989a00071 100644 (file)
 #ifndef _UCW_BITOPS_H
 #define _UCW_BITOPS_H
 
+#ifdef CONFIG_UCW_CLEAN_ABI
+#define bit_fls ucw_bit_fls
+#define ffs_table ucw_ffs_table
+#endif
+
 /* Find highest bit set (i.e., the floor of the binary logarithm) (bit-fls.c) */
 
 int bit_fls(u32 x);            /* bit_fls(0)=-1 */