2001-06-15 07:22:38 -07:00
|
|
|
/***********************************************************************/
|
|
|
|
/* */
|
|
|
|
/* Objective Caml */
|
|
|
|
/* */
|
|
|
|
/* Xavier Leroy, projet Cristal, INRIA Rocquencourt */
|
|
|
|
/* */
|
|
|
|
/* Copyright 2001 Institut National de Recherche en Informatique et */
|
|
|
|
/* en Automatique. All rights reserved. This file is distributed */
|
2001-12-07 05:41:02 -08:00
|
|
|
/* under the terms of the GNU Library General Public License, with */
|
|
|
|
/* the special exception on linking described in file ../LICENSE. */
|
2001-06-15 07:22:38 -07:00
|
|
|
/* */
|
|
|
|
/***********************************************************************/
|
|
|
|
|
|
|
|
/* $Id$ */
|
|
|
|
|
2003-12-15 10:10:51 -08:00
|
|
|
#ifndef CAML_PRINTEXC_H
|
|
|
|
#define CAML_PRINTEXC_H
|
2001-06-15 07:22:38 -07:00
|
|
|
|
|
|
|
|
|
|
|
#include "misc.h"
|
|
|
|
#include "mlvalues.h"
|
|
|
|
|
2001-08-28 07:47:48 -07:00
|
|
|
CAMLextern char * format_caml_exception (value);
|
2001-06-15 07:22:38 -07:00
|
|
|
void fatal_uncaught_exception (value) Noreturn;
|
|
|
|
|
|
|
|
|
2003-12-15 10:10:51 -08:00
|
|
|
#endif /* CAML_PRINTEXC_H */
|