Retro68/gcc/newlib/libc/sys/rdos/unlink.c
2012-03-27 01:51:53 +02:00

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;
}