summaryrefslogtreecommitdiffstats
path: root/byterun/fail.h
diff options
context:
space:
mode:
authorXavier Leroy <xavier.leroy@inria.fr>2008-09-18 11:23:28 +0000
committerXavier Leroy <xavier.leroy@inria.fr>2008-09-18 11:23:28 +0000
commitcfec1dd5d824a5454d51ab3b6022f204decb5a9c (patch)
tree99f7a99c4863297732db12052eba168a2f19325c /byterun/fail.h
parent444fdef24feed161fa8a33f3602bca4f39a790d2 (diff)
PR#4390: ajout caml_raise_with_args
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@9030 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'byterun/fail.h')
-rw-r--r--byterun/fail.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/byterun/fail.h b/byterun/fail.h
index 5a55c57c5..f092c8115 100644
--- a/byterun/fail.h
+++ b/byterun/fail.h
@@ -60,6 +60,7 @@ extern value caml_exn_bucket;
CAMLextern void caml_raise (value bucket) Noreturn;
CAMLextern void caml_raise_constant (value tag) Noreturn;
CAMLextern void caml_raise_with_arg (value tag, value arg) Noreturn;
+CAMLextern void caml_raise_with_args (value tag, int nargs, value arg[]) Noreturn;
CAMLextern void caml_raise_with_string (value tag, char const * msg) Noreturn;
CAMLextern void caml_failwith (char const *) Noreturn;
CAMLextern void caml_invalid_argument (char const *) Noreturn;