summaryrefslogtreecommitdiffstats
path: root/otherlibs/unix/chown.c
diff options
context:
space:
mode:
authorXavier Leroy <xavier.leroy@inria.fr>1997-09-02 12:55:01 +0000
committerXavier Leroy <xavier.leroy@inria.fr>1997-09-02 12:55:01 +0000
commit1517cea772058b0fcbe778d05b8b99c7e6f3b25f (patch)
treea2d817fe623f81b7729ed3cd2e128cad91eca02b /otherlibs/unix/chown.c
parentd75918f7e459b507ac6b4b95f14df0a1eedd4937 (diff)
Sources C convertis en ANSI C
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@1696 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'otherlibs/unix/chown.c')
-rw-r--r--otherlibs/unix/chown.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/otherlibs/unix/chown.c b/otherlibs/unix/chown.c
index 1457c325c..9023bc079 100644
--- a/otherlibs/unix/chown.c
+++ b/otherlibs/unix/chown.c
@@ -14,8 +14,7 @@
#include <mlvalues.h>
#include "unixsupport.h"
-value unix_chown(path, uid, gid) /* ML */
- value path, uid, gid;
+value unix_chown(value path, value uid, value gid) /* ML */
{
int ret;
ret = chown(String_val(path), Int_val(uid), Int_val(gid));