diff options
Diffstat (limited to 'otherlibs/win32unix/windir.c')
-rw-r--r-- | otherlibs/win32unix/windir.c | 4 |
1 files changed, 2 insertions, 2 deletions
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); |