mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-24 07:31:32 +00:00
12 lines
162 B
C
12 lines
162 B
C
|
/* connector for unlink */
|
||
|
|
||
|
#include <reent.h>
|
||
|
#include <unistd.h>
|
||
|
|
||
|
int
|
||
|
_DEFUN (unlink, (file),
|
||
|
_CONST char *file)
|
||
|
{
|
||
|
return _unlink_r (_REENT, file);
|
||
|
}
|