X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=tests%2Ftest-gettimeofday.c;h=2c608769e6c4ecf2d26933df479d8bd12f01ae77;hb=23eecb48e39afd0d267d64d40ba6bf97aa865e13;hp=ecb9eddcc813f39f09272daf3e51239668219b08;hpb=a7a268e3dc87989512d25f4c62de6a172864d579;p=gnulib.git diff --git a/tests/test-gettimeofday.c b/tests/test-gettimeofday.c index ecb9eddcc..2c608769e 100644 --- a/tests/test-gettimeofday.c +++ b/tests/test-gettimeofday.c @@ -1,11 +1,11 @@ /* - * Copyright (C) 2005, 2007 Free Software Foundation + * Copyright (C) 2005, 2007, 2009-2013 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,20 +13,23 @@ * 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 . */ #include #include + +#include "signature.h" +SIGNATURE_CHECK (gettimeofday, int, + (struct timeval *, GETTIMEOFDAY_TIMEZONE *)); + #include #include #include int -main (int argc, char *argv[]) +main (void) { time_t t = 0; struct tm *lt; @@ -40,8 +43,5 @@ main (int argc, char *argv[]) fprintf (stderr, "gettimeofday still clobbers the localtime buffer!\n"); return 1; } - else - { - return 0; - } + return 0; }