mirror of
https://gitlab.isc.org/isc-projects/kea
synced 2025-08-22 18:08:16 +00:00
8 lines
127 B
C++
8 lines
127 B
C++
#include <openssl/opensslv.h>
|
|
#include <iostream>
|
|
|
|
int main() {
|
|
std::cout << OPENSSL_VERSION_TEXT << "\n";
|
|
return 0;
|
|
}
|