summaryrefslogtreecommitdiffstats
path: root/otherlibs/unix/symlink.c
diff options
context:
space:
mode:
Diffstat (limited to 'otherlibs/unix/symlink.c')
-rw-r--r--otherlibs/unix/symlink.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/otherlibs/unix/symlink.c b/otherlibs/unix/symlink.c
index 9d5bf15f9..9a2e1fe44 100644
--- a/otherlibs/unix/symlink.c
+++ b/otherlibs/unix/symlink.c
@@ -16,8 +16,7 @@
#ifdef HAS_SYMLINK
-value unix_symlink(path1, path2) /* ML */
- value path1, path2;
+value unix_symlink(value path1, value path2) /* ML */
{
if (symlink(String_val(path1), String_val(path2)) == -1)
uerror("symlink", path2);
@@ -26,6 +25,7 @@ value unix_symlink(path1, path2) /* ML */
#else
-value unix_symlink() { invalid_argument("symlink not implemented"); }
+value unix_symlink(value path1, value path2)
+{ invalid_argument("symlink not implemented"); }
#endif