summaryrefslogtreecommitdiff
path: root/userland/libc/unistd/unlink.c
blob: ccac0dfafc25da0e1154f2d44949cbda7ea0237e (plain)
1
2
3
4
5
6
7
#include <unistd.h>

int unlink(const char *path) {
  // TODO
  printf("TODO: Implement unlink");
  return 0;
}