summaryrefslogtreecommitdiff
path: root/src/unistd/unlink.c
blob: 38279888dc5d3d0eefc314e212e7d4deb1c87417 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "stddef.h"
#include "sys/types.h"
#include <unistd.h>
#include "nonstd/assert.h"
#include "nonstd/syscall.h"

int unlink(const char *path)
{
	ASSERT_NONNULL(path);
	SC(int, path);
}
/*
POSIX(1)
*/