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

sysunlink.c « syscalls « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1399a80e5a406e1ceee4383d593bf73622c0174b (plain)
1
2
3
4
5
6
7
8
9
10
11
/* connector for unlink */

#include <reent.h>
#include <unistd.h>

int
_DEFUN (unlink, (file),
        _CONST char *file)
{
  return _unlink_r (_REENT, file);
}