From: Ralf Corsépius Date: Sat, 27 Oct 2007 02:13:07 +0000 (+0200) Subject: Remove HAVE_VA_LIST_AS_ARRAY. X-Git-Tag: rpm-4.6.0-rc1~1568 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4275322229d82f8137627c26c5080fdc40aaa372;p=platform%2Fupstream%2Frpm.git Remove HAVE_VA_LIST_AS_ARRAY. --- diff --git a/rpmio/rpmlog.c b/rpmio/rpmlog.c index e6d2062..5149766 100644 --- a/rpmio/rpmlog.c +++ b/rpmio/rpmlog.c @@ -7,19 +7,6 @@ #include "rpmlog.h" #include "debug.h" -#ifndef va_copy -# ifdef __va_copy -# define va_copy(DEST,SRC) __va_copy((DEST),(SRC)) -# else -# ifdef HAVE_VA_LIST_AS_ARRAY -# define va_copy(DEST,SRC) (*(DEST) = *(SRC)) -# else -# define va_copy(DEST,SRC) ((DEST) = (SRC)) -# endif -# endif -#endif - - static int nrecs = 0; static rpmlogRec recs = NULL;