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

13 lines
181 B
C

/* connector for link */
#include <reent.h>
#include <unistd.h>
int
_DEFUN (link, (old, new),
const char *old,
const char *new)
{
return _link_r (_REENT, old, new);
}