mirror of
https://github.com/darlinghq/darling-openssl.git
synced 2024-11-26 20:40:25 +00:00
8 lines
194 B
C
8 lines
194 B
C
/* Apple-specific wrapper to work around differences between 32 and 64 bit opensslconf.h */
|
|
|
|
#if _WIN64
|
|
#include <openssl/opensslconf64.h>
|
|
#else
|
|
#include <openssl/opensslconf32.h>
|
|
#endif
|