summaryrefslogtreecommitdiffstats
path: root/crypto/conf
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2005-05-17 00:01:48 +0000
committerAndy Polyakov <appro@openssl.org>2005-05-17 00:01:48 +0000
commit25a66ee3cbb7b3f76b95cd4e4b6d4ce6f114ecf8 (patch)
tree48c94f2b982a9e3c1854825937c4d65e3a9d4de7 /crypto/conf
parent0978dec13110c2ebc18b9e476a859389745c7596 (diff)
Move cryptlib.h prior bio.h. Actually it makes sense to include cryptlib.h
first everywhere in crypto and skip stdio.h and string.h [because it includes them].
Diffstat (limited to 'crypto/conf')
-rw-r--r--crypto/conf/conf_def.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/conf/conf_def.c b/crypto/conf/conf_def.c
index f14de2293e..996a0999ac 100644
--- a/crypto/conf/conf_def.c
+++ b/crypto/conf/conf_def.c
@@ -60,6 +60,7 @@
#include <stdio.h>
#include <string.h>
+#include "cryptlib.h"
#include <openssl/stack.h>
#include <openssl/lhash.h>
#include <openssl/conf.h>
@@ -67,7 +68,6 @@
#include "conf_def.h"
#include <openssl/buffer.h>
#include <openssl/err.h>
-#include "cryptlib.h"
static char *eat_ws(CONF *conf, char *p);
static char *eat_alpha_numeric(CONF *conf, char *p);