summaryrefslogtreecommitdiff
path: root/rsync.h
diff options
context:
space:
mode:
authorWayne Davison <wayne@opencoder.net>2020-06-30 08:27:20 -0700
committerWayne Davison <wayne@opencoder.net>2020-06-30 08:27:20 -0700
commit7a413c972246250a8fc8302548489c031de3b0c1 (patch)
treee86c58a904f87adad87e616c8760cd87fa5d751c /rsync.h
parent5be7363297f202cf8e0ae83cf1e7e75f59ba203d (diff)
downloadrsync-7a413c972246250a8fc8302548489c031de3b0c1.tar.gz
Avoid strdup redefinition warning.
Diffstat (limited to 'rsync.h')
-rw-r--r--rsync.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/rsync.h b/rsync.h
index d54eb399..2668d670 100644
--- a/rsync.h
+++ b/rsync.h
@@ -1277,6 +1277,7 @@ extern char *do_malloc;
#define new_array0(type, num) ((type*)my_alloc(NULL, (num), sizeof (type), __FILE__, __LINE__))
#define realloc_array(ptr, type, num) ((type*)my_alloc((ptr), (num), sizeof (type), __FILE__, __LINE__))
+#undef strdup
#define strdup(s) my_strdup(s, __FILE__, __LINE__)
/* use magic gcc attributes to catch format errors */