diff options
Diffstat (limited to 'stdlib/stack.ml')
-rw-r--r-- | stdlib/stack.ml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/stdlib/stack.ml b/stdlib/stack.ml index 8b1710cdd..c1f27b245 100644 --- a/stdlib/stack.ml +++ b/stdlib/stack.ml @@ -1,3 +1,16 @@ +(***********************************************************************) +(* *) +(* Caml Special Light *) +(* *) +(* Xavier Leroy, projet Cristal, INRIA Rocquencourt *) +(* *) +(* Copyright 1995 Institut National de Recherche en Informatique et *) +(* Automatique. Distributed only by permission. *) +(* *) +(***********************************************************************) + +(* $Id$ *) + type 'a t = { mutable c : 'a list } exception Empty |