8 lines
113 B
C
8 lines
113 B
C
#include <openssl/crypto.h>
|
|
|
|
int main(void) {
|
|
OPENSSL_init_crypto(0, NULL);
|
|
OPENSSL_cleanup();
|
|
return 0;
|
|
}
|