summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/cryptlib.h
diff options
context:
space:
mode:
authordjm <>2008-09-06 12:17:54 +0000
committerdjm <>2008-09-06 12:17:54 +0000
commit38ce604e3cc97706b876b0525ddff0121115456d (patch)
tree7ccc28afe1789ea3dbedf72365f955d5b8e105b5 /src/lib/libcrypto/cryptlib.h
parent12867252827c8efaa8ddd1fa3b3d6e321e2bcdef (diff)
downloadopenbsd-38ce604e3cc97706b876b0525ddff0121115456d.tar.gz
openbsd-38ce604e3cc97706b876b0525ddff0121115456d.tar.bz2
openbsd-38ce604e3cc97706b876b0525ddff0121115456d.zip
resolve conflicts
Diffstat (limited to 'src/lib/libcrypto/cryptlib.h')
-rw-r--r--src/lib/libcrypto/cryptlib.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/lib/libcrypto/cryptlib.h b/src/lib/libcrypto/cryptlib.h
index 6f59e08ca6..5ceaa964b5 100644
--- a/src/lib/libcrypto/cryptlib.h
+++ b/src/lib/libcrypto/cryptlib.h
@@ -64,6 +64,11 @@
64 64
65#include "e_os.h" 65#include "e_os.h"
66 66
67#ifdef OPENSSL_USE_APPLINK
68#define BIO_FLAGS_UPLINK 0x8000
69#include "ms/uplink.h"
70#endif
71
67#include <openssl/crypto.h> 72#include <openssl/crypto.h>
68#include <openssl/buffer.h> 73#include <openssl/buffer.h>
69#include <openssl/bio.h> 74#include <openssl/bio.h>
@@ -93,9 +98,12 @@ extern "C" {
93#define DECIMAL_SIZE(type) ((sizeof(type)*8+2)/3+1) 98#define DECIMAL_SIZE(type) ((sizeof(type)*8+2)/3+1)
94#define HEX_SIZE(type) (sizeof(type)*2) 99#define HEX_SIZE(type) (sizeof(type)*2)
95 100
101void OPENSSL_cpuid_setup(void);
102extern unsigned long OPENSSL_ia32cap_P;
96void OPENSSL_showfatal(const char *,...); 103void OPENSSL_showfatal(const char *,...);
97void *OPENSSL_stderr(void); 104void *OPENSSL_stderr(void);
98extern int OPENSSL_NONPIC_relocated; 105extern int OPENSSL_NONPIC_relocated;
106int OPENSSL_isservice(void);
99 107
100#ifdef __cplusplus 108#ifdef __cplusplus
101} 109}