Commit 89d6aa10 authored by Dr. Stephen Henson's avatar Dr. Stephen Henson
Browse files

Use ossl_inline and DEFINE_LHASH_OF



Reviewed-by: default avatarRich Salz <rsalz@openssl.org>
parent 26a884c2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -16,7 +16,7 @@ typedef struct function_st {
    const OPTIONS *help;
} FUNCTION;

DECLARE_LHASH_OF(FUNCTION);
DEFINE_LHASH_OF(FUNCTION);

extern int asn1parse_main(int argc, char *argv[]);
extern int ca_main(int argc, char *argv[]);
+1 −1
Original line number Diff line number Diff line
@@ -20,7 +20,7 @@ typedef struct function_st {
    const OPTIONS *help;
} FUNCTION;

DECLARE_LHASH_OF(FUNCTION);
DEFINE_LHASH_OF(FUNCTION);

EOF

+1 −1
Original line number Diff line number Diff line
@@ -218,7 +218,7 @@ struct engine_st {

typedef struct st_engine_pile ENGINE_PILE;

DECLARE_LHASH_OF(ENGINE_PILE);
DEFINE_LHASH_OF(ENGINE_PILE);

#ifdef  __cplusplus
}
+1 −1
Original line number Diff line number Diff line

DECLARE_LHASH_OF(ERR_STATE);
DEFINE_LHASH_OF(ERR_STATE);
+2 −2
Original line number Diff line number Diff line
@@ -86,9 +86,9 @@ DEFINE_STACK_OF(EX_CALLBACK)
DEFINE_STACK_OF(CRYPTO_dynlock)

typedef struct app_mem_info_st APP_INFO;
DECLARE_LHASH_OF(APP_INFO);
DEFINE_LHASH_OF(APP_INFO);
typedef struct mem_st MEM;
DECLARE_LHASH_OF(MEM);
DEFINE_LHASH_OF(MEM);

# ifndef OPENSSL_SYS_VMS
#  define X509_CERT_AREA          OPENSSLDIR
Loading