blob: 77bdde4207fdc117b12e635da89c6ff7c2189f1a (
plain) (
blame)
1
2
3
4
5
6
7
8
|
#ifndef APOS_BITS_H
#define APOS_BITS_H
#define __is_set(x, y) ((x) & (y))
#define __set_bit(x, y) ((x) |= (y))
#define __clear_bit(x, y) ((x) &= ~(y))
#endif /* APOS_BITS_H */
|