diff options
author | Pierre Weis <Pierre.Weis@inria.fr> | 2007-02-12 07:57:25 +0000 |
---|---|---|
committer | Pierre Weis <Pierre.Weis@inria.fr> | 2007-02-12 07:57:25 +0000 |
commit | 5dfee27596109571a8a086d05927b7248c62a8cf (patch) | |
tree | b8a94daee53a6ac92255bac4b5d80c1b22bd6915 /byterun/unix.c | |
parent | 64646eff2fb54c80efd631ddbab6d8f1ce23bed8 (diff) |
Procedure caml_dlopen takes two arguments. Some C compilers do not accept a
definition with 2 arguments after a declaration with only one.
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@7851 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'byterun/unix.c')
-rw-r--r-- | byterun/unix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/byterun/unix.c b/byterun/unix.c index 60e5f3634..7d3f85788 100644 --- a/byterun/unix.c +++ b/byterun/unix.c @@ -312,7 +312,7 @@ char * caml_dlerror(void) #endif #else -void * caml_dlopen(char * libname) +void * caml_dlopen(char * libname, int for_execution) { return NULL; } |