since they are hiding in the #define forest.
ok miod@
#define ASN1_ITEM_rptr(ref) (&(ref##_it))
#define DECLARE_ASN1_ITEM(name) \
- OPENSSL_EXTERN const ASN1_ITEM name##_it;
+ extern const ASN1_ITEM name##_it;
#else
/* Macros for start and end of ASN1_ITEM definition */
#define ASN1_ITEM_start(itname) \
- OPENSSL_GLOBAL const ASN1_ITEM itname##_it = {
+ const ASN1_ITEM itname##_it = {
#define ASN1_ITEM_end(itname) \
};
#define ASN1_ITEM_rptr(ref) (&(ref##_it))
#define DECLARE_ASN1_ITEM(name) \
- OPENSSL_EXTERN const ASN1_ITEM name##_it;
+ extern const ASN1_ITEM name##_it;
#else
/* Macros for start and end of ASN1_ITEM definition */
#define ASN1_ITEM_start(itname) \
- OPENSSL_GLOBAL const ASN1_ITEM itname##_it = {
+ const ASN1_ITEM itname##_it = {
#define ASN1_ITEM_end(itname) \
};