unlink.c 96 B

1234567
  1. #include "lib.h"
  2. PUBLIC int unlink(name)
  3. char *name;
  4. {
  5. return callm3(FS, UNLINK, 0, name);
  6. }