]> mj.ucw.cz Git - libucw.git/blobdiff - ucw/bitsig.h
Build: Added support for custom PKG_CONFIG_PATH in UCW::Configure::PkgConfig().
[libucw.git] / ucw / bitsig.h
index 60a5b1478474ef7f0ca32c340d8f5d2e540c9a04..556b3c915c4ee8a05a9257b7a6a0aba32c7e6320 100644 (file)
@@ -7,9 +7,21 @@
  *     of the GNU Lesser General Public License.
  */
 
+#ifndef _UCW_BITSIG_H
+#define _UCW_BITSIG_H
+
+#ifdef CONFIG_UCW_CLEAN_ABI
+#define bitsig_free ucw_bitsig_free
+#define bitsig_init ucw_bitsig_init
+#define bitsig_insert ucw_bitsig_insert
+#define bitsig_member ucw_bitsig_member
+#endif
+
 struct bitsig;
 
-struct bitsig *bitsig_init(uns perrlog, uns maxn);
+struct bitsig *bitsig_init(uint perrlog, uint maxn);
 void bitsig_free(struct bitsig *b);
 int bitsig_member(struct bitsig *b, byte *item);
 int bitsig_insert(struct bitsig *b, byte *item);
+
+#endif