11 lines
149 B
C
11 lines
149 B
C
|
#include "config.h"
|
||
|
#include <_ansi.h>
|
||
|
#include <_syslist.h>
|
||
|
#include <errno.h>
|
||
|
|
||
|
int unlink(char *name)
|
||
|
{
|
||
|
errno = ENOSYS;
|
||
|
return -1;
|
||
|
}
|