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

#include <reent.h>

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