4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-01-19 04:49:25 +08:00
Yaakov Selkowitz 9087163804 ansification: remove _DEFUN
Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
2018-01-17 11:47:26 -06:00

11 lines
137 B
C

/* connector for unlink */
#include <reent.h>
#include <unistd.h>
int
unlink (const char *file)
{
return _unlink_r (_REENT, file);
}