blob: b369d2017a11495540c99942880062027f642a08 [file] [log] [blame]
#include <errno.h>
int
_unlink(const char *name)
{
errno = ENOSYS;
return -1;
}