X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=tests%2Ftest-base64.c;h=67aca2c8a0c45856b67fed065c587d568c8293a2;hb=cd3bee968885a85671cad267e142aad74076b5e2;hp=e43bee016ba4953de349d37386956956c2ddee5a;hpb=e846f8ff89e600abeb8a994a6ee1a64dffd2c69a;p=gnulib.git diff --git a/tests/test-base64.c b/tests/test-base64.c index e43bee016..67aca2c8a 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;