AES x86 assembler implementation.
[oweals/openssl.git] / crypto / cryptlib.h
index b8727aa6e1a591ef2c4819703fa233e707b958d5..8b0add7e20d9134d1bea04d310ee176b929d0a47 100644 (file)
@@ -93,9 +93,8 @@ 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))
+void OPENSSL_cpuid_setup(void);
+extern unsigned long OPENSSL_ia32cap_P;
 
 #ifdef  __cplusplus
 }