1#include <wolfssl/options.h> 2#include <wolfssl/ssl.h> 3 4int main(void) 5{ 6 if (wolfSSL_Init() != WOLFSSL_SUCCESS) { 7 return 1; 8 } 9 wolfSSL_Cleanup(); 10 return 0; 11}