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

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

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