aboutsummaryrefslogtreecommitdiff
path: root/parsing
diff options
context:
space:
mode:
authorfilliatr2001-03-15 13:38:59 +0000
committerfilliatr2001-03-15 13:38:59 +0000
commit187dc15532f0c6f380d7bcb07adc2180c29fedc2 (patch)
treed7bacf01519ca82b5745d2c493c7f7f1826106af /parsing
parent23741168b109daece8bb588b9c5fb4506e7726ce (diff)
entetes
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/coq/trunk@1469 85f007b7-540e-0410-9357-904b9bb8a0f7
Diffstat (limited to 'parsing')
-rwxr-xr-xparsing/ast.ml7
-rwxr-xr-xparsing/ast.mli7
-rw-r--r--parsing/astterm.ml7
-rw-r--r--parsing/astterm.mli7
-rw-r--r--parsing/coqast.ml7
-rw-r--r--parsing/coqast.mli7
-rw-r--r--parsing/coqlib.ml7
-rw-r--r--parsing/coqlib.mli7
-rw-r--r--parsing/egrammar.ml7
-rw-r--r--parsing/egrammar.mli7
-rw-r--r--parsing/esyntax.ml7
-rw-r--r--parsing/esyntax.mli7
-rw-r--r--parsing/extend.ml47
-rw-r--r--parsing/extend.mli7
-rw-r--r--parsing/g_basevernac.ml47
-rw-r--r--parsing/g_cases.ml47
-rw-r--r--parsing/g_constr.ml47
-rw-r--r--parsing/g_minicoq.ml47
-rw-r--r--parsing/g_minicoq.mli7
-rw-r--r--parsing/g_natsyntax.ml7
-rw-r--r--parsing/g_natsyntax.mli7
-rw-r--r--parsing/g_prim.ml47
-rw-r--r--parsing/g_proofs.ml47
-rw-r--r--parsing/g_rsyntax.ml7
-rw-r--r--parsing/g_tactic.ml47
-rw-r--r--parsing/g_vernac.ml47
-rw-r--r--parsing/g_zsyntax.ml7
-rw-r--r--parsing/g_zsyntax.mli7
-rw-r--r--parsing/lexer.ml47
-rw-r--r--parsing/lexer.mli7
-rw-r--r--parsing/pcoq.ml47
-rw-r--r--parsing/pcoq.mli7
-rw-r--r--parsing/pretty.ml7
-rw-r--r--parsing/pretty.mli7
-rw-r--r--parsing/printer.ml7
-rw-r--r--parsing/printer.mli7
-rw-r--r--parsing/q_coqast.ml47
-rw-r--r--parsing/search.ml7
-rw-r--r--parsing/search.mli7
-rw-r--r--parsing/termast.ml7
-rw-r--r--parsing/termast.mli7
41 files changed, 287 insertions, 0 deletions
diff --git a/parsing/ast.ml b/parsing/ast.ml
index a438bdeb42..b870371274 100755
--- a/parsing/ast.ml
+++ b/parsing/ast.ml
@@ -1,3 +1,10 @@
+(***********************************************************************)
+(* v * The Coq Proof Assistant / The Coq Development Team *)
+(* <O___,, * INRIA-Rocquencourt & LRI-CNRS-Orsay *)
+(* \VV/ *************************************************************)
+(* // * This file is distributed under the terms of the *)
+(* * GNU Lesser General Public License Version 2.1 *)
+(***********************************************************************)
(* $Id$ *)
diff --git a/parsing/ast.mli b/parsing/ast.mli
index 160f0928c3..0379ba305f 100755
--- a/parsing/ast.mli
+++ b/parsing/ast.mli
@@ -1,3 +1,10 @@
+(***********************************************************************)
+(* v * The Coq Proof Assistant / The Coq Development Team *)
+(* <O___,, * INRIA-Rocquencourt & LRI-CNRS-Orsay *)
+(* \VV/ *************************************************************)
+(* // * This file is distributed under the terms of the *)
+(* * GNU Lesser General Public License Version 2.1 *)
+(***********************************************************************)
(*i $Id$ i*)
diff --git a/parsing/astterm.ml b/parsing/astterm.ml
index ea1c307b60..6a527d43e7 100644
--- a/parsing/astterm.ml
+++ b/parsing/astterm.ml
@@ -1,3 +1,10 @@
+(***********************************************************************)
+(* v * The Coq Proof Assistant / The Coq Development Team *)
+(* <O___,, * INRIA-Rocquencourt & LRI-CNRS-Orsay *)
+(* \VV/ *************************************************************)
+(* // * This file is distributed under the terms of the *)
+(* * GNU Lesser General Public License Version 2.1 *)
+(***********************************************************************)
(* $Id$ *)
diff --git a/parsing/astterm.mli b/parsing/astterm.mli
index cf2cbfd510..6f7d400fe8 100644
--- a/parsing/astterm.mli
+++ b/parsing/astterm.mli
@@ -1,3 +1,10 @@
+(***********************************************************************)
+(* v * The Coq Proof Assistant / The Coq Development Team *)
+(* <O___,, * INRIA-Rocquencourt & LRI-CNRS-Orsay *)
+(* \VV/ *************************************************************)
+(* // * This file is distributed under the terms of the *)
+(* * GNU Lesser General Public License Version 2.1 *)
+(***********************************************************************)
(*i $Id$ i*)
diff --git a/parsing/coqast.ml b/parsing/coqast.ml
index 0f0dcda29c..81df802bc0 100644
--- a/parsing/coqast.ml
+++ b/parsing/coqast.ml
@@ -1,3 +1,10 @@
+(***********************************************************************)
+(* v * The Coq Proof Assistant / The Coq Development Team *)
+(* <O___,, * INRIA-Rocquencourt & LRI-CNRS-Orsay *)
+(* \VV/ *************************************************************)
+(* // * This file is distributed under the terms of the *)
+(* * GNU Lesser General Public License Version 2.1 *)
+(***********************************************************************)
(* $Id$ *)
diff --git a/parsing/coqast.mli b/parsing/coqast.mli
index 38803b5ae6..255611c463 100644
--- a/parsing/coqast.mli
+++ b/parsing/coqast.mli
@@ -1,3 +1,10 @@
+(***********************************************************************)
+(* v * The Coq Proof Assistant / The Coq Development Team *)
+(* <O___,, * INRIA-Rocquencourt & LRI-CNRS-Orsay *)
+(* \VV/ *************************************************************)
+(* // * This file is distributed under the terms of the *)
+(* * GNU Lesser General Public License Version 2.1 *)
+(***********************************************************************)
(*i $Id$ i*)
diff --git a/parsing/coqlib.ml b/parsing/coqlib.ml
index d7e8efa20f..0aae508e52 100644
--- a/parsing/coqlib.ml
+++ b/parsing/coqlib.ml
@@ -1,3 +1,10 @@
+(***********************************************************************)
+(* v * The Coq Proof Assistant / The Coq Development Team *)
+(* <O___,, * INRIA-Rocquencourt & LRI-CNRS-Orsay *)
+(* \VV/ *************************************************************)
+(* // * This file is distributed under the terms of the *)
+(* * GNU Lesser General Public License Version 2.1 *)
+(***********************************************************************)
(* $Id$ *)
diff --git a/parsing/coqlib.mli b/parsing/coqlib.mli
index c835eeffa3..13699a2428 100644
--- a/parsing/coqlib.mli
+++ b/parsing/coqlib.mli
@@ -1,3 +1,10 @@
+(***********************************************************************)
+(* v * The Coq Proof Assistant / The Coq Development Team *)
+(* <O___,, * INRIA-Rocquencourt & LRI-CNRS-Orsay *)
+(* \VV/ *************************************************************)
+(* // * This file is distributed under the terms of the *)
+(* * GNU Lesser General Public License Version 2.1 *)
+(***********************************************************************)
(* $Id$ *)
diff --git a/parsing/egrammar.ml b/parsing/egrammar.ml
index 166d43536c..aa9ab17aa2 100644
--- a/parsing/egrammar.ml
+++ b/parsing/egrammar.ml
@@ -1,3 +1,10 @@
+(***********************************************************************)
+(* v * The Coq Proof Assistant / The Coq Development Team *)
+(* <O___,, * INRIA-Rocquencourt & LRI-CNRS-Orsay *)
+(* \VV/ *************************************************************)
+(* // * This file is distributed under the terms of the *)
+(* * GNU Lesser General Public License Version 2.1 *)
+(***********************************************************************)
(* $Id$ *)
diff --git a/parsing/egrammar.mli b/parsing/egrammar.mli
index 47e477fc5c..83dc3ce65d 100644
--- a/parsing/egrammar.mli
+++ b/parsing/egrammar.mli
@@ -1,3 +1,10 @@
+(***********************************************************************)
+(* v * The Coq Proof Assistant / The Coq Development Team *)
+(* <O___,, * INRIA-Rocquencourt & LRI-CNRS-Orsay *)
+(* \VV/ *************************************************************)
+(* // * This file is distributed under the terms of the *)
+(* * GNU Lesser General Public License Version 2.1 *)
+(***********************************************************************)
(*i $Id$ i*)
diff --git a/parsing/esyntax.ml b/parsing/esyntax.ml
index ef9b4feecc..ba6e8614e4 100644
--- a/parsing/esyntax.ml
+++ b/parsing/esyntax.ml
@@ -1,3 +1,10 @@
+(***********************************************************************)
+(* v * The Coq Proof Assistant / The Coq Development Team *)
+(* <O___,, * INRIA-Rocquencourt & LRI-CNRS-Orsay *)
+(* \VV/ *************************************************************)
+(* // * This file is distributed under the terms of the *)
+(* * GNU Lesser General Public License Version 2.1 *)
+(***********************************************************************)
(* $Id$ *)
diff --git a/parsing/esyntax.mli b/parsing/esyntax.mli
index fe8542a51d..8f7fbce75a 100644
--- a/parsing/esyntax.mli
+++ b/parsing/esyntax.mli
@@ -1,3 +1,10 @@
+(***********************************************************************)
+(* v * The Coq Proof Assistant / The Coq Development Team *)
+(* <O___,, * INRIA-Rocquencourt & LRI-CNRS-Orsay *)
+(* \VV/ *************************************************************)
+(* // * This file is distributed under the terms of the *)
+(* * GNU Lesser General Public License Version 2.1 *)
+(***********************************************************************)
(*i $Id$ i*)
diff --git a/parsing/extend.ml4 b/parsing/extend.ml4
index 1f6c36753d..f5969f4b20 100644
--- a/parsing/extend.ml4
+++ b/parsing/extend.ml4
@@ -1,3 +1,10 @@
+(***********************************************************************)
+(* v * The Coq Proof Assistant / The Coq Development Team *)
+(* <O___,, * INRIA-Rocquencourt & LRI-CNRS-Orsay *)
+(* \VV/ *************************************************************)
+(* // * This file is distributed under the terms of the *)
+(* * GNU Lesser General Public License Version 2.1 *)
+(***********************************************************************)
(*i camlp4deps: "parsing/grammar.cma" i*)
diff --git a/parsing/extend.mli b/parsing/extend.mli
index 086d1b2ebc..00ffb20974 100644
--- a/parsing/extend.mli
+++ b/parsing/extend.mli
@@ -1,3 +1,10 @@
+(***********************************************************************)
+(* v * The Coq Proof Assistant / The Coq Development Team *)
+(* <O___,, * INRIA-Rocquencourt & LRI-CNRS-Orsay *)
+(* \VV/ *************************************************************)
+(* // * This file is distributed under the terms of the *)
+(* * GNU Lesser General Public License Version 2.1 *)
+(***********************************************************************)
(*i $Id$ i*)
diff --git a/parsing/g_basevernac.ml4 b/parsing/g_basevernac.ml4
index b4d380c804..10fd8c67c7 100644
--- a/parsing/g_basevernac.ml4
+++ b/parsing/g_basevernac.ml4
@@ -1,3 +1,10 @@
+(***********************************************************************)
+(* v * The Coq Proof Assistant / The Coq Development Team *)
+(* <O___,, * INRIA-Rocquencourt & LRI-CNRS-Orsay *)
+(* \VV/ *************************************************************)
+(* // * This file is distributed under the terms of the *)
+(* * GNU Lesser General Public License Version 2.1 *)
+(***********************************************************************)
(*i camlp4deps: "parsing/grammar.cma" i*)
diff --git a/parsing/g_cases.ml4 b/parsing/g_cases.ml4
index d464e2f47f..52c35ce043 100644
--- a/parsing/g_cases.ml4
+++ b/parsing/g_cases.ml4
@@ -1,3 +1,10 @@
+(***********************************************************************)
+(* v * The Coq Proof Assistant / The Coq Development Team *)
+(* <O___,, * INRIA-Rocquencourt & LRI-CNRS-Orsay *)
+(* \VV/ *************************************************************)
+(* // * This file is distributed under the terms of the *)
+(* * GNU Lesser General Public License Version 2.1 *)
+(***********************************************************************)
(*i camlp4deps: "parsing/grammar.cma" i*)
diff --git a/parsing/g_constr.ml4 b/parsing/g_constr.ml4
index e4cbc2c1da..709cc10306 100644
--- a/parsing/g_constr.ml4
+++ b/parsing/g_constr.ml4
@@ -1,3 +1,10 @@
+(***********************************************************************)
+(* v * The Coq Proof Assistant / The Coq Development Team *)
+(* <O___,, * INRIA-Rocquencourt & LRI-CNRS-Orsay *)
+(* \VV/ *************************************************************)
+(* // * This file is distributed under the terms of the *)
+(* * GNU Lesser General Public License Version 2.1 *)
+(***********************************************************************)
(*i camlp4deps: "parsing/grammar.cma" i*)
diff --git a/parsing/g_minicoq.ml4 b/parsing/g_minicoq.ml4
index e9f47b0853..4eec7bb5fc 100644
--- a/parsing/g_minicoq.ml4
+++ b/parsing/g_minicoq.ml4
@@ -1,3 +1,10 @@
+(***********************************************************************)
+(* v * The Coq Proof Assistant / The Coq Development Team *)
+(* <O___,, * INRIA-Rocquencourt & LRI-CNRS-Orsay *)
+(* \VV/ *************************************************************)
+(* // * This file is distributed under the terms of the *)
+(* * GNU Lesser General Public License Version 2.1 *)
+(***********************************************************************)
(*i camlp4deps: "parsing/grammar.cma" i*)
diff --git a/parsing/g_minicoq.mli b/parsing/g_minicoq.mli
index 7ebd657703..f3c60ceddd 100644
--- a/parsing/g_minicoq.mli
+++ b/parsing/g_minicoq.mli
@@ -1,3 +1,10 @@
+(***********************************************************************)
+(* v * The Coq Proof Assistant / The Coq Development Team *)
+(* <O___,, * INRIA-Rocquencourt & LRI-CNRS-Orsay *)
+(* \VV/ *************************************************************)
+(* // * This file is distributed under the terms of the *)
+(* * GNU Lesser General Public License Version 2.1 *)
+(***********************************************************************)
(*i $Id$ i*)
diff --git a/parsing/g_natsyntax.ml b/parsing/g_natsyntax.ml
index a4c9d90825..6b67c1c0a4 100644
--- a/parsing/g_natsyntax.ml
+++ b/parsing/g_natsyntax.ml
@@ -1,3 +1,10 @@
+(***********************************************************************)
+(* v * The Coq Proof Assistant / The Coq Development Team *)
+(* <O___,, * INRIA-Rocquencourt & LRI-CNRS-Orsay *)
+(* \VV/ *************************************************************)
+(* // * This file is distributed under the terms of the *)
+(* * GNU Lesser General Public License Version 2.1 *)
+(***********************************************************************)
(* $Id$ *)
diff --git a/parsing/g_natsyntax.mli b/parsing/g_natsyntax.mli
index f9b7b51d1f..91596ef5c4 100644
--- a/parsing/g_natsyntax.mli
+++ b/parsing/g_natsyntax.mli
@@ -1,3 +1,10 @@
+(***********************************************************************)
+(* v * The Coq Proof Assistant / The Coq Development Team *)
+(* <O___,, * INRIA-Rocquencourt & LRI-CNRS-Orsay *)
+(* \VV/ *************************************************************)
+(* // * This file is distributed under the terms of the *)
+(* * GNU Lesser General Public License Version 2.1 *)
+(***********************************************************************)
(*i $Id$ i*)
diff --git a/parsing/g_prim.ml4 b/parsing/g_prim.ml4
index 7a09453afa..05f4dc42ef 100644
--- a/parsing/g_prim.ml4
+++ b/parsing/g_prim.ml4
@@ -1,3 +1,10 @@
+(***********************************************************************)
+(* v * The Coq Proof Assistant / The Coq Development Team *)
+(* <O___,, * INRIA-Rocquencourt & LRI-CNRS-Orsay *)
+(* \VV/ *************************************************************)
+(* // * This file is distributed under the terms of the *)
+(* * GNU Lesser General Public License Version 2.1 *)
+(***********************************************************************)
(*i $Id$ i*)
diff --git a/parsing/g_proofs.ml4 b/parsing/g_proofs.ml4
index d176a05aaf..efd6a5de21 100644
--- a/parsing/g_proofs.ml4
+++ b/parsing/g_proofs.ml4
@@ -1,3 +1,10 @@
+(***********************************************************************)
+(* v * The Coq Proof Assistant / The Coq Development Team *)
+(* <O___,, * INRIA-Rocquencourt & LRI-CNRS-Orsay *)
+(* \VV/ *************************************************************)
+(* // * This file is distributed under the terms of the *)
+(* * GNU Lesser General Public License Version 2.1 *)
+(***********************************************************************)
(*i camlp4deps: "parsing/grammar.cma" i*)
diff --git a/parsing/g_rsyntax.ml b/parsing/g_rsyntax.ml
index b9902e103b..a6ba6cb612 100644
--- a/parsing/g_rsyntax.ml
+++ b/parsing/g_rsyntax.ml
@@ -1,3 +1,10 @@
+(***********************************************************************)
+(* v * The Coq Proof Assistant / The Coq Development Team *)
+(* <O___,, * INRIA-Rocquencourt & LRI-CNRS-Orsay *)
+(* \VV/ *************************************************************)
+(* // * This file is distributed under the terms of the *)
+(* * GNU Lesser General Public License Version 2.1 *)
+(***********************************************************************)
open Coqast
open Ast
open Pp
diff --git a/parsing/g_tactic.ml4 b/parsing/g_tactic.ml4
index 4595c81b8f..f26034c910 100644
--- a/parsing/g_tactic.ml4
+++ b/parsing/g_tactic.ml4
@@ -1,3 +1,10 @@
+(***********************************************************************)
+(* v * The Coq Proof Assistant / The Coq Development Team *)
+(* <O___,, * INRIA-Rocquencourt & LRI-CNRS-Orsay *)
+(* \VV/ *************************************************************)
+(* // * This file is distributed under the terms of the *)
+(* * GNU Lesser General Public License Version 2.1 *)
+(***********************************************************************)
(*i camlp4deps: "parsing/grammar.cma" i*)
diff --git a/parsing/g_vernac.ml4 b/parsing/g_vernac.ml4
index 431b687f69..f1cae2458e 100644
--- a/parsing/g_vernac.ml4
+++ b/parsing/g_vernac.ml4
@@ -1,3 +1,10 @@
+(***********************************************************************)
+(* v * The Coq Proof Assistant / The Coq Development Team *)
+(* <O___,, * INRIA-Rocquencourt & LRI-CNRS-Orsay *)
+(* \VV/ *************************************************************)
+(* // * This file is distributed under the terms of the *)
+(* * GNU Lesser General Public License Version 2.1 *)
+(***********************************************************************)
(*i camlp4deps: "parsing/grammar.cma" i*)
diff --git a/parsing/g_zsyntax.ml b/parsing/g_zsyntax.ml
index 26f946d031..96f9bc6111 100644
--- a/parsing/g_zsyntax.ml
+++ b/parsing/g_zsyntax.ml
@@ -1,3 +1,10 @@
+(***********************************************************************)
+(* v * The Coq Proof Assistant / The Coq Development Team *)
+(* <O___,, * INRIA-Rocquencourt & LRI-CNRS-Orsay *)
+(* \VV/ *************************************************************)
+(* // * This file is distributed under the terms of the *)
+(* * GNU Lesser General Public License Version 2.1 *)
+(***********************************************************************)
(* $Id$ *)
diff --git a/parsing/g_zsyntax.mli b/parsing/g_zsyntax.mli
index f04d6a151d..a8370f6306 100644
--- a/parsing/g_zsyntax.mli
+++ b/parsing/g_zsyntax.mli
@@ -1,3 +1,10 @@
+(***********************************************************************)
+(* v * The Coq Proof Assistant / The Coq Development Team *)
+(* <O___,, * INRIA-Rocquencourt & LRI-CNRS-Orsay *)
+(* \VV/ *************************************************************)
+(* // * This file is distributed under the terms of the *)
+(* * GNU Lesser General Public License Version 2.1 *)
+(***********************************************************************)
(*i $Id$ i*)
diff --git a/parsing/lexer.ml4 b/parsing/lexer.ml4
index adc15c8a7a..570e047116 100644
--- a/parsing/lexer.ml4
+++ b/parsing/lexer.ml4
@@ -1,3 +1,10 @@
+(***********************************************************************)
+(* v * The Coq Proof Assistant / The Coq Development Team *)
+(* <O___,, * INRIA-Rocquencourt & LRI-CNRS-Orsay *)
+(* \VV/ *************************************************************)
+(* // * This file is distributed under the terms of the *)
+(* * GNU Lesser General Public License Version 2.1 *)
+(***********************************************************************)
(*i $Id$ i*)
diff --git a/parsing/lexer.mli b/parsing/lexer.mli
index b7dc6e25d7..9b0e3bbd8b 100644
--- a/parsing/lexer.mli
+++ b/parsing/lexer.mli
@@ -1,3 +1,10 @@
+(***********************************************************************)
+(* v * The Coq Proof Assistant / The Coq Development Team *)
+(* <O___,, * INRIA-Rocquencourt & LRI-CNRS-Orsay *)
+(* \VV/ *************************************************************)
+(* // * This file is distributed under the terms of the *)
+(* * GNU Lesser General Public License Version 2.1 *)
+(***********************************************************************)
(*i $Id$ i*)
diff --git a/parsing/pcoq.ml4 b/parsing/pcoq.ml4
index 2d451839fb..6792ae0443 100644
--- a/parsing/pcoq.ml4
+++ b/parsing/pcoq.ml4
@@ -1,3 +1,10 @@
+(***********************************************************************)
+(* v * The Coq Proof Assistant / The Coq Development Team *)
+(* <O___,, * INRIA-Rocquencourt & LRI-CNRS-Orsay *)
+(* \VV/ *************************************************************)
+(* // * This file is distributed under the terms of the *)
+(* * GNU Lesser General Public License Version 2.1 *)
+(***********************************************************************)
(*i $Id$ i*)
diff --git a/parsing/pcoq.mli b/parsing/pcoq.mli
index 79d33a98bc..0ad8a73c44 100644
--- a/parsing/pcoq.mli
+++ b/parsing/pcoq.mli
@@ -1,3 +1,10 @@
+(***********************************************************************)
+(* v * The Coq Proof Assistant / The Coq Development Team *)
+(* <O___,, * INRIA-Rocquencourt & LRI-CNRS-Orsay *)
+(* \VV/ *************************************************************)
+(* // * This file is distributed under the terms of the *)
+(* * GNU Lesser General Public License Version 2.1 *)
+(***********************************************************************)
(*i $Id$ i*)
diff --git a/parsing/pretty.ml b/parsing/pretty.ml
index 1e45d0ea25..ef46a03994 100644
--- a/parsing/pretty.ml
+++ b/parsing/pretty.ml
@@ -1,3 +1,10 @@
+(***********************************************************************)
+(* v * The Coq Proof Assistant / The Coq Development Team *)
+(* <O___,, * INRIA-Rocquencourt & LRI-CNRS-Orsay *)
+(* \VV/ *************************************************************)
+(* // * This file is distributed under the terms of the *)
+(* * GNU Lesser General Public License Version 2.1 *)
+(***********************************************************************)
(* $Id$ *)
diff --git a/parsing/pretty.mli b/parsing/pretty.mli
index 7b4ea47e83..c5071367b7 100644
--- a/parsing/pretty.mli
+++ b/parsing/pretty.mli
@@ -1,3 +1,10 @@
+(***********************************************************************)
+(* v * The Coq Proof Assistant / The Coq Development Team *)
+(* <O___,, * INRIA-Rocquencourt & LRI-CNRS-Orsay *)
+(* \VV/ *************************************************************)
+(* // * This file is distributed under the terms of the *)
+(* * GNU Lesser General Public License Version 2.1 *)
+(***********************************************************************)
(*i $Id$ i*)
diff --git a/parsing/printer.ml b/parsing/printer.ml
index a325f1a8b1..dc77058d1d 100644
--- a/parsing/printer.ml
+++ b/parsing/printer.ml
@@ -1,3 +1,10 @@
+(***********************************************************************)
+(* v * The Coq Proof Assistant / The Coq Development Team *)
+(* <O___,, * INRIA-Rocquencourt & LRI-CNRS-Orsay *)
+(* \VV/ *************************************************************)
+(* // * This file is distributed under the terms of the *)
+(* * GNU Lesser General Public License Version 2.1 *)
+(***********************************************************************)
(* $Id$ *)
diff --git a/parsing/printer.mli b/parsing/printer.mli
index fe456f047a..9f0d84e6de 100644
--- a/parsing/printer.mli
+++ b/parsing/printer.mli
@@ -1,3 +1,10 @@
+(***********************************************************************)
+(* v * The Coq Proof Assistant / The Coq Development Team *)
+(* <O___,, * INRIA-Rocquencourt & LRI-CNRS-Orsay *)
+(* \VV/ *************************************************************)
+(* // * This file is distributed under the terms of the *)
+(* * GNU Lesser General Public License Version 2.1 *)
+(***********************************************************************)
(*i $Id$ i*)
diff --git a/parsing/q_coqast.ml4 b/parsing/q_coqast.ml4
index 256b48d6cb..0b6e92a43f 100644
--- a/parsing/q_coqast.ml4
+++ b/parsing/q_coqast.ml4
@@ -1,3 +1,10 @@
+(***********************************************************************)
+(* v * The Coq Proof Assistant / The Coq Development Team *)
+(* <O___,, * INRIA-Rocquencourt & LRI-CNRS-Orsay *)
+(* \VV/ *************************************************************)
+(* // * This file is distributed under the terms of the *)
+(* * GNU Lesser General Public License Version 2.1 *)
+(***********************************************************************)
(* $Id$ *)
diff --git a/parsing/search.ml b/parsing/search.ml
index fc2100a6a3..88ab104ef1 100644
--- a/parsing/search.ml
+++ b/parsing/search.ml
@@ -1,3 +1,10 @@
+(***********************************************************************)
+(* v * The Coq Proof Assistant / The Coq Development Team *)
+(* <O___,, * INRIA-Rocquencourt & LRI-CNRS-Orsay *)
+(* \VV/ *************************************************************)
+(* // * This file is distributed under the terms of the *)
+(* * GNU Lesser General Public License Version 2.1 *)
+(***********************************************************************)
(* $Id$ *)
diff --git a/parsing/search.mli b/parsing/search.mli
index 96f64b7ce8..4cd8e85c2c 100644
--- a/parsing/search.mli
+++ b/parsing/search.mli
@@ -1,3 +1,10 @@
+(***********************************************************************)
+(* v * The Coq Proof Assistant / The Coq Development Team *)
+(* <O___,, * INRIA-Rocquencourt & LRI-CNRS-Orsay *)
+(* \VV/ *************************************************************)
+(* // * This file is distributed under the terms of the *)
+(* * GNU Lesser General Public License Version 2.1 *)
+(***********************************************************************)
(*i $Id$ i*)
diff --git a/parsing/termast.ml b/parsing/termast.ml
index 335c2bcf41..796798be9a 100644
--- a/parsing/termast.ml
+++ b/parsing/termast.ml
@@ -1,3 +1,10 @@
+(***********************************************************************)
+(* v * The Coq Proof Assistant / The Coq Development Team *)
+(* <O___,, * INRIA-Rocquencourt & LRI-CNRS-Orsay *)
+(* \VV/ *************************************************************)
+(* // * This file is distributed under the terms of the *)
+(* * GNU Lesser General Public License Version 2.1 *)
+(***********************************************************************)
(* $Id$ *)
diff --git a/parsing/termast.mli b/parsing/termast.mli
index 35a7349d8f..df18bc27ee 100644
--- a/parsing/termast.mli
+++ b/parsing/termast.mli
@@ -1,3 +1,10 @@
+(***********************************************************************)
+(* v * The Coq Proof Assistant / The Coq Development Team *)
+(* <O___,, * INRIA-Rocquencourt & LRI-CNRS-Orsay *)
+(* \VV/ *************************************************************)
+(* // * This file is distributed under the terms of the *)
+(* * GNU Lesser General Public License Version 2.1 *)
+(***********************************************************************)
(*i $Id$ i*)