X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/654175798bdbdd6403e10c8fa74e8586b3612ea1..d1be231290b3867648ee417fad341fdf1caaa94b:/rsync.h diff --git a/rsync.h b/rsync.h index e11b84a0..5ea5301d 100644 --- a/rsync.h +++ b/rsync.h @@ -474,3 +474,14 @@ extern int errno; #ifdef REPLACE_INET_NTOA #define inet_ntoa rep_inet_ntoa #endif + + +#ifndef HAVE_STRLCPY +size_t strlcpy(char *d, const char *s, size_t bufsize); +#endif + +#ifndef HAVE_STRLCAT +size_t strlcat(char *d, const char *s, size_t bufsize); +#endif + +#define exit_cleanup(code) _exit_cleanup(code, __FILE__, __LINE__)