diff options
author | Xavier Leroy <xavier.leroy@inria.fr> | 2001-07-02 12:24:13 +0000 |
---|---|---|
committer | Xavier Leroy <xavier.leroy@inria.fr> | 2001-07-02 12:24:13 +0000 |
commit | 10a3beff9df055018ee49d44e8db2736f8bd542c (patch) | |
tree | 4f73af43a3510f54cc28b8b01c26fdd0a3f6e785 /otherlibs/unix/envir.c | |
parent | ae47eb4d1fbf4bf48afc525e05d783d13a8a73da (diff) |
Patches pour conformance ANSI stricte (compilo AIX xlc_r)
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@3560 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'otherlibs/unix/envir.c')
-rw-r--r-- | otherlibs/unix/envir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/otherlibs/unix/envir.c b/otherlibs/unix/envir.c index ff9b80d66..a25263c1c 100644 --- a/otherlibs/unix/envir.c +++ b/otherlibs/unix/envir.c @@ -19,5 +19,5 @@ extern char ** environ; value unix_environment(void) /* ML */ { - return copy_string_array(environ); + return copy_string_array((const char**)environ); } |