diff options
Diffstat (limited to 'otherlibs/unix/opendir.c')
-rw-r--r-- | otherlibs/unix/opendir.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/otherlibs/unix/opendir.c b/otherlibs/unix/opendir.c index 924ab05f2..552c38c34 100644 --- a/otherlibs/unix/opendir.c +++ b/otherlibs/unix/opendir.c @@ -20,8 +20,7 @@ #include <sys/dir.h> #endif -value unix_opendir(path) /* ML */ - value path; +value unix_opendir(value path) /* ML */ { DIR * d; d = opendir(String_val(path)); |