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

value unix_unlink(path)          /* ML */
     value path;
{
  if (unlink(String_val(path)) == -1) uerror("unlink", path);
  return Val_unit;
}