summaryrefslogtreecommitdiff
path: root/libssl/tests/basic/driver.c
blob: 56e9c5f2855e21a2e881fd65832fa45a03809af2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 * 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;
}