Make OpenSSLdie() visible (it's a must to get a proper reference in
authorRichard Levitte <levitte@openssl.org>
Wed, 13 Nov 2002 11:35:12 +0000 (11:35 +0000)
committerRichard Levitte <levitte@openssl.org>
Wed, 13 Nov 2002 11:35:12 +0000 (11:35 +0000)
libeay.num).

crypto/cryptlib.h
crypto/crypto.h

index b8727aa6e1a591ef2c4819703fa233e707b958d5..0d6b9d59f0b1896a31cb1276496db8122aa348af 100644 (file)
@@ -93,10 +93,6 @@ extern "C" {
 #define DECIMAL_SIZE(type)     ((sizeof(type)*8+2)/3+1)
 #define HEX_SIZE(type)         (sizeof(type)*2)
 
-/* die if we have to */
-void OpenSSLDie(const char *file,int line,const char *assertion);
-#define OPENSSL_assert(e)      ((e) ? (void)0 : OpenSSLDie(__FILE__, __LINE__, #e))
-
 #ifdef  __cplusplus
 }
 #endif
index ba0c114bcb4be5c5eacff426ed87ea78480db2d5..a135ee96c7b87dea8e160b7664a07cddada1274d 100644 (file)
@@ -427,6 +427,10 @@ void CRYPTO_mem_leaks(struct bio_st *bio);
 typedef void *CRYPTO_MEM_LEAK_CB(unsigned long, const char *, int, int, void *);
 void CRYPTO_mem_leaks_cb(CRYPTO_MEM_LEAK_CB *cb);
 
+/* die if we have to */
+void OpenSSLDie(const char *file,int line,const char *assertion);
+#define OPENSSL_assert(e)      ((e) ? (void)0 : OpenSSLDie(__FILE__, __LINE__, #e))
+
 /* BEGIN ERROR CODES */
 /* The following lines are auto generated by the script mkerr.pl. Any changes
  * made after this point may be overwritten when the script is next run.