diff options
author | Andy Polyakov <appro@openssl.org> | 2005-05-17 02:01:48 +0200 |
---|---|---|
committer | Andy Polyakov <appro@openssl.org> | 2005-05-17 02:01:48 +0200 |
commit | 25a66ee3cbb7b3f76b95cd4e4b6d4ce6f114ecf8 (patch) | |
tree | 48c94f2b982a9e3c1854825937c4d65e3a9d4de7 /crypto/mem_dbg.c | |
parent | Improve shell portability of new rules in Makefile.shared. (diff) | |
download | openssl-25a66ee3cbb7b3f76b95cd4e4b6d4ce6f114ecf8.tar.xz openssl-25a66ee3cbb7b3f76b95cd4e4b6d4ce6f114ecf8.zip |
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/mem_dbg.c')
-rw-r--r-- | crypto/mem_dbg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/mem_dbg.c b/crypto/mem_dbg.c index e212de27e4..557516bde9 100644 --- a/crypto/mem_dbg.c +++ b/crypto/mem_dbg.c @@ -59,11 +59,11 @@ #include <stdio.h> #include <stdlib.h> #include <time.h> +#include "cryptlib.h" #include <openssl/crypto.h> #include <openssl/buffer.h> #include <openssl/bio.h> #include <openssl/lhash.h> -#include "cryptlib.h" static int mh_mode=CRYPTO_MEM_CHECK_OFF; /* The state changes to CRYPTO_MEM_CHECK_ON | CRYPTO_MEM_CHECK_ENABLE |