1
0
mirror of https://github.com/msgpack/msgpack-c.git synced 2025-03-21 15:10:01 +01:00

5 lines
153 B
Coq
Raw Normal View History

2011-04-03 17:11:53 +09:00
Ltac rewrite_for x :=
match goal with
| [ H : x = _ |- _ ] => rewrite H in *; clear H
| [ H : _ = x |- _ ] => rewrite <- H in *; clear H
end.