X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=tests%2Ftest-vsnprintf-posix.c;h=a409b1242980bc0bb2c47f9ee61f7e7438b39dbc;hb=c7a120f0df82737c24832f6a0c6cc7e1bfd4e671;hp=052cd72666811804294e4a2417d884289d9234b1;hpb=04cd5487c7cb479142c1a5f2b5c542ec75373dd2;p=gnulib.git diff --git a/tests/test-vsnprintf-posix.c b/tests/test-vsnprintf-posix.c index 052cd7266..a409b1242 100644 --- a/tests/test-vsnprintf-posix.c +++ b/tests/test-vsnprintf-posix.c @@ -1,10 +1,10 @@ /* Test of POSIX compatible vsnprintf() function. - Copyright (C) 2007 Free Software Foundation, Inc. + Copyright (C) 2007-2009 Free Software Foundation, Inc. - This program is free software; you can redistribute it and/or modify + 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, or (at your option) - any later version. + the Free Software Foundation; either version 3 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 @@ -12,24 +12,24 @@ 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. */ + along with this program. If not, see . */ /* Written by Bruno Haible , 2007. */ -#ifdef HAVE_CONFIG_H -# include -#endif +#include #include +#include #include #include #include #include #include -#define ASSERT(expr) if (!(expr)) abort (); +#include "macros.h" + +#include "test-snprintf-posix.h" static int my_snprintf (char *str, size_t size, const char *format, ...) @@ -43,8 +43,6 @@ my_snprintf (char *str, size_t size, const char *format, ...) return ret; } -#include "test-snprintf-posix.h" - int main (int argc, char *argv[]) {