source: trunk/minix/lib/posix/_unlink.c@ 9

Last change on this file since 9 was 9, checked in by Mattia Monga, 13 years ago

Minix 3.1.2a

File size: 181 bytes
Line 
1#include <lib.h>
2#define unlink _unlink
3#include <unistd.h>
4
5PUBLIC int unlink(name)
6_CONST char *name;
7{
8 message m;
9
10 _loadname(name, &m);
11 return(_syscall(FS, UNLINK, &m));
12}
Note: See TracBrowser for help on using the repository browser.