X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=tests%2Ftest-gc-arcfour.c;h=31fa2377b0fe8acaf581295337d258617606cf9f;hb=dcfa509347541cf4a44f7e5be5fc74398d8a8199;hp=9a92da40dc0bd68b2ab0319453ec90f6b28ce9dc;hpb=c4f00b7d32160f83e4fb811c6584e8f4e48dfa2e;p=gnulib.git diff --git a/tests/test-gc-arcfour.c b/tests/test-gc-arcfour.c index 9a92da40d..31fa2377b 100644 --- a/tests/test-gc-arcfour.c +++ b/tests/test-gc-arcfour.c @@ -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 @@ -62,10 +60,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_1[i] & 0xFF); + printf ("%02x ", ciphertext_1[i] & 0xFF); printf ("\n"); return 1; } @@ -85,10 +83,10 @@ main (int argc, char *argv[]) size_t i; printf ("expected:\n"); for (i = 0; i < 5; i++) - printf ("%02x ", plaintext_1[i] & 0xFF); + printf ("%02x ", plaintext_1[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; }