summaryrefslogtreecommitdiffstats
path: root/otherlibs/unix/symlink.c
blob: e4fdabd94b33dae1af9e32099f8cf4b6b150f240 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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