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.c18
1 files changed, 18 insertions, 0 deletions
diff --git a/otherlibs/unix/symlink.c b/otherlibs/unix/symlink.c
new file mode 100644
index 000000000..e4fdabd94
--- /dev/null
+++ b/otherlibs/unix/symlink.c
@@ -0,0 +1,18 @@
+#include <mlvalues.h>
+#include "unix.h"
+
+#ifdef HAS_SYMLINK
+
+value unix_symlink(path1, path2) /* ML */
+ value path1, path2;
+{
+ if (symlink(String_val(path1), String_val(path2)) == -1)
+ uerror("symlink", path2);
+ return Val_unit;
+}
+
+#else
+
+value unix_symlink() { invalid_argument("symlink not implemented"); }
+
+#endif