aboutsummaryrefslogtreecommitdiff
path: root/lib/sys/unlink.h
blob: 7a143b0c227c8c29de3da5a3f20d5f11c1504863 (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef UNLINK_H
#define UNLINK_H

#include "syscalls.h"

static int unlink(const char *pathname)
{
	return syscall(UNLINK, pathname);
}

#endif