https://github.com/charguer/ocaml
Raw File
Tip revision: 034ccb77097c6a23812a65239c7737f10766c0fb authored by No author on 14 April 2006, 09:53:49 UTC
This commit was manufactured by cvs2svn to create tag 'ocaml3092'.
Tip revision: 034ccb7
std_exit.ml
(***********************************************************************)
(*                                                                     *)
(*                           Objective Caml                            *)
(*                                                                     *)
(*            Xavier Leroy, projet Cristal, INRIA Rocquencourt         *)
(*                                                                     *)
(*  Copyright 1996 Institut National de Recherche en Informatique et   *)
(*  en Automatique.  All rights reserved.  This file is distributed    *)
(*  under the terms of the GNU Library General Public License, with    *)
(*  the special exception on linking described in file ../LICENSE.     *)
(*                                                                     *)
(***********************************************************************)

(* $Id$ *)

(* Ensure that [at_exit] functions are called at the end of every program *)

let _ = do_at_exit()
back to top