FreeRTOS-Kernel/verification/verifast/proof/verifast_bitops_extended.h
2022-10-28 13:59:45 -04:00

10 lines
No EOL
218 B
C

#ifndef VERIFAST_BITOPS_EXTENDED_H
#define VERIFAST_BITOPS_EXTENDED_H
/*@
lemma void bitand_idempotent_right(int l, int r);
requires true;
ensures (l & r) == ((l & r) & r);
@*/
#endif /* VERIFAST_BITOPS_EXTENDED_H */