From a01aeca776e907b76e5faa37946213caa21b6776 Mon Sep 17 00:00:00 2001 From: Simon Josefsson Date: Tue, 28 Dec 2004 02:36:14 +0000 Subject: [PATCH] * tests/test-base64.c: Include required header files. Remove unused variables. --- ChangeLog | 5 +++++ tests/test-base64.c | 9 +++++++-- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index efa01b9128..13bd0b2557 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2004-12-28 Simon Josefsson + + * tests/test-base64.c: Include required header files. Remove + unused variables. + 2004-12-23 Paul Eggert * modules/getdate (Depends-on): Remove alloca-opt. diff --git a/tests/test-base64.c b/tests/test-base64.c index e43bee016b..67aca2c8a0 100755 --- a/tests/test-base64.c +++ b/tests/test-base64.c @@ -16,18 +16,23 @@ with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -#include "base64.h" +#ifdef HAVE_CONFIG_H +# include +#endif +#include #include +#include #include +#include "base64.h" + int main (int argc, char *argv[]) { const char *in = "abcdefghijklmnop"; const char *b64in = "YWJjZGVmZw=="; char out[255]; - char *p; size_t len; bool ok; -- 2.30.2