2001-06-15 07:22:38 -07:00
|
|
|
/***********************************************************************/
|
|
|
|
/* */
|
2011-07-27 07:17:02 -07:00
|
|
|
/* OCaml */
|
2001-06-15 07:22:38 -07:00
|
|
|
/* */
|
|
|
|
/* 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
|
|
|
/* */
|
|
|
|
/***********************************************************************/
|
|
|
|
|
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"
|
|
|
|
|
2012-01-07 12:55:28 -08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2004-01-01 08:42:43 -08:00
|
|
|
CAMLextern char * caml_format_exception (value);
|
|
|
|
void caml_fatal_uncaught_exception (value) Noreturn;
|
2001-06-15 07:22:38 -07:00
|
|
|
|
2012-01-07 12:55:28 -08:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
2001-06-15 07:22:38 -07:00
|
|
|
|
2003-12-15 10:10:51 -08:00
|
|
|
#endif /* CAML_PRINTEXC_H */
|