X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=tests%2Ftest-gc-arctwo.c;h=e46b38ee1f356dc9423976185207144d257fbba6;hb=880d107;hp=4df5c4dcd5d0c550046f60f6217e1abca66074ca;hpb=853ca59f4a9c7dac95aacece42daf3e09d5ae03e;p=gnulib.git diff --git a/tests/test-gc-arctwo.c b/tests/test-gc-arctwo.c index 4df5c4dcd..e46b38ee1 100644 --- a/tests/test-gc-arctwo.c +++ b/tests/test-gc-arctwo.c @@ -1,10 +1,10 @@ /* - * Copyright (C) 2005 Free Software Foundation + * Copyright (C) 2005, 2010 Free Software Foundation, Inc. * Written by Simon Josefsson * * 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) + * the Free Software Foundation; either version 3, or (at your option) * any later version. * * This program is distributed in the hope that it will be useful, @@ -17,9 +17,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA * 02110-1301, USA. */ -#ifdef HAVE_CONFIG_H -# include -#endif +#include #include #include @@ -61,10 +59,10 @@ main (int argc, char *argv[]) size_t i; printf ("expected:\n"); for (i = 0; i < 5; i++) - printf ("%02x ", scratch[i] & 0xFF); + printf ("%02x ", scratch[i] & 0xFF); printf ("\ncomputed:\n"); for (i = 0; i < 5; i++) - printf ("%02x ", ciphertext[i] & 0xFF); + printf ("%02x ", ciphertext[i] & 0xFF); printf ("\n"); return 1; } @@ -84,10 +82,10 @@ main (int argc, char *argv[]) size_t i; printf ("expected:\n"); for (i = 0; i < 5; i++) - printf ("%02x ", plaintext[i] & 0xFF); + printf ("%02x ", plaintext[i] & 0xFF); printf ("\ncomputed:\n"); for (i = 0; i < 5; i++) - printf ("%02x ", scratch[i] & 0xFF); + printf ("%02x ", scratch[i] & 0xFF); printf ("\n"); return 1; }