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

#include <reent.h>

int
unlink (file)
     char *file;
{
#ifdef REENTRANT_SYSCALLS_PROVIDED
  return _unlink_r (_REENT, file);
#else
  return _unlink (file);
#endif
}