diff options
Diffstat (limited to 'otherlibs/unix/open.c')
-rw-r--r-- | otherlibs/unix/open.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/otherlibs/unix/open.c b/otherlibs/unix/open.c index 32ccc20b1..eef6a8761 100644 --- a/otherlibs/unix/open.c +++ b/otherlibs/unix/open.c @@ -24,8 +24,7 @@ static int open_flag_table[] = { O_RDONLY, O_WRONLY, O_RDWR, O_NONBLOCK, O_APPEND, O_CREAT, O_TRUNC, O_EXCL }; -value unix_open(path, flags, perm) /* ML */ - value path, flags, perm; +value unix_open(value path, value flags, value perm) /* ML */ { int ret; |