diff options
Diffstat (limited to 'otherlibs/win32unix')
-rw-r--r-- | otherlibs/win32unix/createprocess.c | 2 | ||||
-rw-r--r-- | otherlibs/win32unix/listen.c | 2 | ||||
-rw-r--r-- | otherlibs/win32unix/sockopt.c | 4 | ||||
-rw-r--r-- | otherlibs/win32unix/startup.c | 4 | ||||
-rw-r--r-- | otherlibs/win32unix/system.c | 2 | ||||
-rw-r--r-- | otherlibs/win32unix/windir.c | 4 | ||||
-rw-r--r-- | otherlibs/win32unix/winwait.c | 2 |
7 files changed, 10 insertions, 10 deletions
diff --git a/otherlibs/win32unix/createprocess.c b/otherlibs/win32unix/createprocess.c index 8f44254db..9600cf0fe 100644 --- a/otherlibs/win32unix/createprocess.c +++ b/otherlibs/win32unix/createprocess.c @@ -46,7 +46,7 @@ value win_create_process_native(cmd, cmdline, env, fd1, fd2, fd3) return Val_int(pi.hProcess); } -value win_create_process(argv, argn) +value win_create_process(argv, argn) /* ML */ value * argv; int argn; { diff --git a/otherlibs/win32unix/listen.c b/otherlibs/win32unix/listen.c index 1c017e140..15e8334e3 100644 --- a/otherlibs/win32unix/listen.c +++ b/otherlibs/win32unix/listen.c @@ -15,7 +15,7 @@ #include "unixsupport.h" #include <winsock.h> -value unix_listen(sock, backlog) +value unix_listen(sock, backlog) /* ML */ value sock, backlog; { if (listen((SOCKET) _get_osfhandle(Int_val(sock)), Int_val(backlog)) == -1) diff --git a/otherlibs/win32unix/sockopt.c b/otherlibs/win32unix/sockopt.c index 3986b8788..a3832cb21 100644 --- a/otherlibs/win32unix/sockopt.c +++ b/otherlibs/win32unix/sockopt.c @@ -20,7 +20,7 @@ static int sockopt[] = { SO_DEBUG, SO_BROADCAST, SO_REUSEADDR, SO_KEEPALIVE, SO_DONTROUTE, SO_OOBINLINE }; -value unix_getsockopt(socket, option) +value unix_getsockopt(socket, option) /* ML */ value socket, option; { int optval, optsize; @@ -31,7 +31,7 @@ value unix_getsockopt(socket, option) return Val_int(optval); } -value unix_setsockopt(socket, option, status) +value unix_setsockopt(socket, option, status) /* ML */ value socket, option, status; { int optval = Int_val(status); diff --git a/otherlibs/win32unix/startup.c b/otherlibs/win32unix/startup.c index 922a11fa0..ef11de0c9 100644 --- a/otherlibs/win32unix/startup.c +++ b/otherlibs/win32unix/startup.c @@ -17,7 +17,7 @@ value val_process_id; -value win_startup(unit) +value win_startup(unit) /* ML */ value unit; { WSADATA wsaData; @@ -33,7 +33,7 @@ value win_startup(unit) return Val_unit; } -value win_cleanup(unit) +value win_cleanup(unit) /* ML */ value unit; { (void) WSACleanup(); diff --git a/otherlibs/win32unix/system.c b/otherlibs/win32unix/system.c index ecbc0e571..de4f14d07 100644 --- a/otherlibs/win32unix/system.c +++ b/otherlibs/win32unix/system.c @@ -18,7 +18,7 @@ #include <process.h> #include <stdio.h> -value win_system(cmd) +value win_system(cmd) /* ML */ value cmd; { int ret; diff --git a/otherlibs/win32unix/windir.c b/otherlibs/win32unix/windir.c index 08f70ed66..2661133b7 100644 --- a/otherlibs/win32unix/windir.c +++ b/otherlibs/win32unix/windir.c @@ -41,7 +41,7 @@ value win_findfirst(name) /* ML */ return v; } -value win_findnext(valh) +value win_findnext(valh) /* ML */ value valh; { int retcode; @@ -52,7 +52,7 @@ value win_findnext(valh) return copy_string(fileinfo.name); } -value win_findclose(valh) +value win_findclose(valh) /* ML */ value valh; { if (_findclose(Int_val(valh)) != 0) uerror("closedir", Nothing); diff --git a/otherlibs/win32unix/winwait.c b/otherlibs/win32unix/winwait.c index 6b078a9cc..ebba52ff4 100644 --- a/otherlibs/win32unix/winwait.c +++ b/otherlibs/win32unix/winwait.c @@ -37,7 +37,7 @@ static value alloc_process_status(pid, status) return res; } -value win_waitpid(flags, vpid_req) +value win_waitpid(flags, vpid_req) /* ML */ value flags, vpid_req; { int status, pid_req; |