From 3f6a493b87dcfb9b49e22313fd5f7c321c3f77d1 Mon Sep 17 00:00:00 2001 From: Damien Doligez Date: Wed, 5 Apr 2000 18:30:22 +0000 Subject: MacOS: ajout macosunix; portage bigarray et systhreads; tabs git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@3042 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02 --- otherlibs/unix/fcntl.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'otherlibs/unix/fcntl.c') diff --git a/otherlibs/unix/fcntl.c b/otherlibs/unix/fcntl.c index 259431fc2..d52dbc733 100644 --- a/otherlibs/unix/fcntl.c +++ b/otherlibs/unix/fcntl.c @@ -23,7 +23,7 @@ #define O_NONBLOCK O_NDELAY #endif -value unix_set_nonblock(value fd) +value unix_set_nonblock(value fd) /* ML */ { int retcode; retcode = fcntl(Int_val(fd), F_GETFL, 0); @@ -33,7 +33,7 @@ value unix_set_nonblock(value fd) return Val_unit; } -value unix_clear_nonblock(value fd) +value unix_clear_nonblock(value fd) /* ML */ { int retcode; retcode = fcntl(Int_val(fd), F_GETFL, 0); @@ -45,7 +45,7 @@ value unix_clear_nonblock(value fd) #ifdef FD_CLOEXEC -value unix_set_close_on_exec(value fd) +value unix_set_close_on_exec(value fd) /* ML */ { int retcode; retcode = fcntl(Int_val(fd), F_GETFD, 0); @@ -55,7 +55,7 @@ value unix_set_close_on_exec(value fd) return Val_unit; } -value unix_clear_close_on_exec(value fd) +value unix_clear_close_on_exec(value fd) /* ML */ { int retcode; retcode = fcntl(Int_val(fd), F_GETFD, 0); -- cgit v1.2.3-70-g09d2