#include "stddef.h" #include "sys/types.h" #include #include "../_assert.h" #include "../_syscall.h" int unlink(const char *path) { ASSERT_NONNULL(path); SYSCALL(unlink, int, -1, path, 0, 0, 0, 0, 0); } /* POSIX(1) */