mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-24 23:32:06 +00:00
13 lines
187 B
C
13 lines
187 B
C
/* connector for link */
|
|
|
|
#include <reent.h>
|
|
#include <unistd.h>
|
|
|
|
int
|
|
_DEFUN (link, (old, new),
|
|
_CONST char *old _AND
|
|
_CONST char *new)
|
|
{
|
|
return _link_r (_REENT, old, new);
|
|
}
|