summaryrefslogtreecommitdiffstats
path: root/otherlibs/win32unix/sendrecv.c
diff options
context:
space:
mode:
authorXavier Leroy <xavier.leroy@inria.fr>2011-12-20 12:37:52 +0000
committerXavier Leroy <xavier.leroy@inria.fr>2011-12-20 12:37:52 +0000
commitd0667f4e52167a4a415d29f76289750cf9515652 (patch)
tree0cee8d2ff1ede9b1de7eb4f96df53c0ec42a1a57 /otherlibs/win32unix/sendrecv.c
parentcf9c1a623c9ac8b84a503a2ebbf947bdaea25eb1 (diff)
Cosmetic: old-style K&R function -> new style prototyped function
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@11896 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'otherlibs/win32unix/sendrecv.c')
-rw-r--r--otherlibs/win32unix/sendrecv.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/otherlibs/win32unix/sendrecv.c b/otherlibs/win32unix/sendrecv.c
index 8837c9994..0ee96c3dd 100644
--- a/otherlibs/win32unix/sendrecv.c
+++ b/otherlibs/win32unix/sendrecv.c
@@ -132,9 +132,7 @@ value unix_sendto_native(value sock, value buff, value ofs, value len, value fla
return Val_int(ret);
}
-CAMLprim value unix_sendto(argv, argc)
- value * argv;
- int argc;
+CAMLprim value unix_sendto(value * argv, int argc)
{
return unix_sendto_native
(argv[0], argv[1], argv[2], argv[3], argv[4], argv[5]);