X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=tests%2Ftest-obstack-printf.c;h=6d2aceca76a92a272b434b4025a70a54ba36ec9f;hb=e4c754e34096c0703a41f6c0e9fb7cc1f007b3ed;hp=0c918d012d959d31ff1d1bf5f0e5a4d882bf09bc;hpb=e0e63df44d88b4b6139cd29906df1fd697c4bc4a;p=gnulib.git diff --git a/tests/test-obstack-printf.c b/tests/test-obstack-printf.c index 0c918d012..6d2aceca7 100644 --- a/tests/test-obstack-printf.c +++ b/tests/test-obstack-printf.c @@ -1,5 +1,5 @@ /* Test of obstack_printf() and obstack_vprintf() functions. - Copyright (C) 2008-2009 Free Software Foundation, Inc. + Copyright (C) 2008-2010 Free Software Foundation, Inc. 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 @@ -20,6 +20,11 @@ #include +#include "signature.h" +SIGNATURE_CHECK (obstack_printf, int, (struct obstack *, char const *, ...)); +SIGNATURE_CHECK (obstack_vprintf, int, (struct obstack *, char const *, + va_list)); + #include "obstack.h" #include "xalloc.h" @@ -28,18 +33,7 @@ #include #include "progname.h" - -#define ASSERT(expr) \ - do \ - { \ - if (!(expr)) \ - { \ - fprintf (stderr, "%s:%d: assertion failed\n", __FILE__, __LINE__); \ - fflush (stderr); \ - abort (); \ - } \ - } \ - while (0) +#include "macros.h" #define obstack_chunk_alloc xmalloc #define obstack_chunk_free free