1/* Apple-specific wrapper to work around differences between 32 and 64 bit opensslconf.h */
2
3#if _WIN64
4#include <openssl/opensslconf64.h>
5#else
6#include <openssl/opensslconf32.h>
7#endif
8