]> git.ipfire.org Git - thirdparty/rsync.git/commitdiff
If va_copy is defined, use it when defining VA_COPY.
authorWayne Davison <wayned@samba.org>
Tue, 11 Oct 2005 20:21:03 +0000 (20:21 +0000)
committerWayne Davison <wayned@samba.org>
Tue, 11 Oct 2005 20:21:03 +0000 (20:21 +0000)
lib/snprintf.c

index 97ede451f3841d9881c89736474d1e18c856869c..d2072fb3cb60d1f2f29c76ef0bcfb5cf5a6e3194 100644 (file)
 #endif
 
 #ifndef VA_COPY
-#ifdef HAVE_VA_COPY
+#if defined HAVE_VA_COPY || defined va_copy
 #define VA_COPY(dest, src) va_copy(dest, src)
 #else
 #ifdef HAVE___VA_COPY