summaryrefslogtreecommitdiff
path: root/libssl/tests/basic/driver.c
blob: 8f526e6638895a61eb763b041ec1280cc75aaf30 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* file      : tests/basic/driver.c
 * copyright : Copyright (c) 2009-2019 Code Synthesis Tools CC
 * license   : OpenSSL and SSLeay Licenses; see accompanying LICENSE file
 */

#include <assert.h>

#include <openssl/ssl.h>

int
main ()
{
  assert (OPENSSL_init_ssl (0 /* opts */, NULL /* settings */) == 1);

  return 0;
}