#include <stdio.h>
#include <stdlib.h>
+#include <openssl/lhash.h>
#include <openssl/conf.h>
#include <openssl/err.h>
+int
main()
{
LHASH *conf;
long eline;
- char *s, *s2;
+ char *s;
#ifdef USE_WIN32
CONF_set_default_method(CONF_WIN32);
printf("---------------------------- DUMP ------------------------\n");
CONF_dump_fp(conf, stdout);
- exit(0);
+ return 0;
}