add arguments to rk_rename to move it into the macro/function namespace

This commit is contained in:
Love Hornquist Astrand
2010-09-14 10:18:08 -07:00
parent d05098b950
commit 64a2e57029

View File

@@ -619,7 +619,7 @@ ROKEN_LIB_FUNCTION int ROKEN_LIB_CALL fchown(int, uid_t, gid_t);
#ifdef RENAME_DOES_NOT_UNLINK
ROKEN_LIB_FUNCTION int ROKEN_LIB_CALL rk_rename(const char *, const char *);
#else
#define rk_rename rename
#define rk_rename(__rk_rn_from,_rk_rn_to) rename(__rk_rn_from,__rk_rn_to)
#endif
#if !defined(HAVE_DAEMON) || defined(NEED_DAEMON_PROTO)