summaryrefslogtreecommitdiffstats
path: root/otherlibs/unix/link.c
blob: 3c7ef671dc9e1ae004c9a802b702a8e434777003 (plain)
1
2
3
4
5
6
7
8
9
#include <mlvalues.h>
#include "unix.h"

value unix_link(path1, path2)    /* ML */
     value path1, path2;
{
  if (link(String_val(path1), String_val(path2)) == -1) uerror("link", path2);
  return Val_unit;
}