aboutsummaryrefslogtreecommitdiffhomepage
path: root/theories/Bool/Zerob.v
diff options
context:
space:
mode:
authorGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2003-06-10 21:29:34 +0000
committerGravatar herbelin <herbelin@85f007b7-540e-0410-9357-904b9bb8a0f7>2003-06-10 21:29:34 +0000
commit8e37718e5461a0f96d1a96a2f845dfbfee6cc90d (patch)
treeab780b843657d9e1a9185818fa5134649be01754 /theories/Bool/Zerob.v
parent2c200a9dc657302086421018a5f1eb4c3b2ca172 (diff)
Import nat_scope
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@4132 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'theories/Bool/Zerob.v')
-rwxr-xr-xtheories/Bool/Zerob.v3
1 files changed, 3 insertions, 0 deletions
diff --git a/theories/Bool/Zerob.v b/theories/Bool/Zerob.v
index 07b4c68c8..788025161 100755
--- a/theories/Bool/Zerob.v
+++ b/theories/Bool/Zerob.v
@@ -11,6 +11,9 @@
Require Arith.
Require Bool.
+V7only [Import nat_scope.].
+Open Local Scope nat_scope.
+
Definition zerob : nat->bool
:= [n:nat]Cases n of O => true | (S _) => false end.