summaryrefslogtreecommitdiffstats
path: root/bitops.h
diff options
context:
space:
mode:
Diffstat (limited to 'bitops.h')
-rw-r--r--bitops.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/bitops.h b/bitops.h
index 6de8bf2..7b9f15c 100644
--- a/bitops.h
+++ b/bitops.h
@@ -25,7 +25,7 @@
#define BITAND(ba, bn) ((ba)[(bn) >> 3] &= (1 << ((bn) & 0x07)))
#define BITXOR(ba, bn) ((ba)[(bn) >> 3] ^= (1 << ((bn) & 0x07)))
-int vec_to_bits (char *bit_array, char *vec, int size);
-int bits_to_vec (char *vec, char *bit_array, int bit_count, int size);
+int vec_to_bits __P((char *bit_array, char *vec, int size));
+int bits_to_vec __P((char *vec, char *bit_array, int bit_count, int size));
#endif /* not _bitops_h_ */