Patrick Kelley 8fd444092b initial
2025-05-07 15:35:15 -04:00

11 lines
148 B
C

#include <openssl/ssl.h>
#if OPENSSL_VERSION_NUMBER != 0x20000000L
# error Unexpected version
#endif
int main()
{
return SSL_library_init();
}