+Tue May 9 20:46:06 2006 Ben Pfaff <blp@gnu.org>
+
+ * Smake: Add stdarg to GNULIB_MODULES.
+
Sun May 7 09:27:40 WST 2006 John Darrington <john@darrington.wattle.id.au>
* po/en_GB.po : Removed. Now that messages talking about coloUrs have
+Tue May 9 09:56:57 2006 Ben Pfaff <blp@gnu.org>
+
+ * va_copy.h: Removed. Now use va_copy() provided by gnulib
+ instead.
+
+ * automake.mk: (src_libpspp_libpspp_a_SOURCES) Removed va_copy.h.
+
Sun May 7 18:17:32 2006 Ben Pfaff <blp@gnu.org>
* pool.c (pool_vasprintf): New function.
+++ /dev/null
-/* PSPP - computes sample statistics.
- Copyright (C) 2006 Free Software Foundation, Inc.
- Written by Ben Pfaff <blp@gnu.org>.
-
- This program is free software; you can redistribute it and/or
- modify it under the terms of the GNU General Public License as
- published by the Free Software Foundation; either version 2 of the
- License, or (at your option) any later version.
-
- This program is distributed in the hope that it will be useful, but
- WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with this program; if not, write to the Free Software
- Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
- 02110-1301, USA. */
-
-#ifndef VA_COPY_H
-#define VA_COPY_H 1
-
-#include <stdarg.h>
-
-#ifndef va_copy
-#ifdef __va_copy
-#define va_copy(DST, SRC) __va_copy (DST, SRC)
-#else
-#define va_copy(DST, SRC) ((DST) = (SRC))
-#endif
-#endif
-
-#endif /* va_copy.h */