Welcome to mirror list, hosted at ThFree Co, Russian Federation.

unlink.c « rdos « sys « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d6c3736b322ad50c477893054db460c2f4f94233 (plain)
1
2
3
4
5
6
7
8
9
10
#include "config.h"
#include <_ansi.h>
#include <_syslist.h>
#include <errno.h>

int unlink(char *name)
{
  errno = ENOSYS;
  return -1;
}