Remove HAVE_VA_LIST_AS_ARRAY.
authorRalf Corsépius <corsepiu@fedoraproject.org>
Sat, 27 Oct 2007 02:13:07 +0000 (04:13 +0200)
committerRalf Corsépius <corsepiu@fedoraproject.org>
Sat, 27 Oct 2007 02:13:07 +0000 (04:13 +0200)
rpmio/rpmlog.c

index e6d2062..5149766 100644 (file)
@@ -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;