X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=tests%2Ftest-gettimeofday.c;h=7d09fc3ad0f94080bca4ce17b9082cc4b2c4f5f7;hb=a87ae2d257362ae83d26a51ab87d2226ec61d62b;hp=50897a12221e1fca5193665aca8b9996f0dbfcf8;hpb=fc0de83a1e5cca98557f603670284f247b34f491;p=gnulib.git diff --git a/tests/test-gettimeofday.c b/tests/test-gettimeofday.c index 50897a122..7d09fc3ad 100644 --- a/tests/test-gettimeofday.c +++ b/tests/test-gettimeofday.c @@ -1,11 +1,11 @@ /* - * Copyright (C) 2005 Free Software Foundation + * Copyright (C) 2005, 2007, 2009-2011 Free Software Foundation, Inc. * Written by Jim Meyering. * - * 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 @@ -13,34 +13,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 . */ -#if HAVE_CONFIG_H -# include -#endif +#include -#include -#include +#include -#if TIME_WITH_SYS_TIME -# include -# include -#else -# if HAVE_SYS_TIME_H -# include -# else -# include -# endif -#endif +#include "signature.h" +SIGNATURE_CHECK (gettimeofday, int, + (struct timeval *, GETTIMEOFDAY_TIMEZONE *)); -#include "gettimeofday.h" +#include + +#include +#include int -main (int argc, char *argv[]) +main (void) { - suseconds_t dummy = 0; /* just to test if this type is available */ time_t t = 0; struct tm *lt; struct tm saved_lt; @@ -53,8 +43,5 @@ main (int argc, char *argv[]) fprintf (stderr, "gettimeofday still clobbers the localtime buffer!\n"); return 1; } - else - { - return 0; - } + return 0; }