summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lib/libcrypto/crypto.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/crypto.h b/src/lib/libcrypto/crypto.h
index 066f6246f6..5b1618ac9b 100644
--- a/src/lib/libcrypto/crypto.h
+++ b/src/lib/libcrypto/crypto.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: crypto.h,v 1.58 2022/12/26 07:18:50 jmc Exp $ */ 1/* $OpenBSD: crypto.h,v 1.59 2023/04/28 21:40:14 tb Exp $ */
2/* ==================================================================== 2/* ====================================================================
3 * Copyright (c) 1998-2006 The OpenSSL Project. All rights reserved. 3 * Copyright (c) 1998-2006 The OpenSSL Project. All rights reserved.
4 * 4 *
@@ -488,7 +488,7 @@ typedef int *CRYPTO_MEM_LEAK_CB(unsigned long, const char *, int, int, void *);
488int CRYPTO_mem_leaks_cb(CRYPTO_MEM_LEAK_CB *cb); 488int CRYPTO_mem_leaks_cb(CRYPTO_MEM_LEAK_CB *cb);
489 489
490/* die if we have to */ 490/* die if we have to */
491void OpenSSLDie(const char *file, int line, const char *assertion); 491__dead void OpenSSLDie(const char *file, int line, const char *assertion);
492#define OPENSSL_assert(e) (void)((e) ? 0 : (OpenSSLDie(__FILE__, __LINE__, #e),1)) 492#define OPENSSL_assert(e) (void)((e) ? 0 : (OpenSSLDie(__FILE__, __LINE__, #e),1))
493 493
494uint64_t OPENSSL_cpu_caps(void); 494uint64_t OPENSSL_cpu_caps(void);