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: 1c5a69cfef6e95354212b132e178b8c3b218e5c1 (plain)
1
2
3
4
5
6
7
8
9
10
/* connector for unlink */

#include <reent.h>

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