mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-29 03:34:26 +08:00
11 lines
148 B
C
11 lines
148 B
C
#include <openssl/ssl.h>
|
|
|
|
#if OPENSSL_VERSION_NUMBER != 0x20000000L
|
|
# error Unexpected version
|
|
#endif
|
|
|
|
int main()
|
|
{
|
|
return SSL_library_init();
|
|
}
|