blob: 5eb7654d32020d04e3fbffe298f29747849293fa [file] [log] [blame]
Matt Caswell0f113f32015-01-22 03:40:55 +00001/*
Rich Salz2039c422016-05-17 14:51:34 -04002 * Copyright 2011-2016 The OpenSSL Project Authors. All Rights Reserved.
Dr. Stephen Henson3f746832011-04-01 14:49:30 +00003 *
Rich Salz2039c422016-05-17 14:51:34 -04004 * Licensed under the OpenSSL license (the "License"). You may not use
5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
7 * https://www.openssl.org/source/license.html
Dr. Stephen Henson3f746832011-04-01 14:49:30 +00008 */
9
10#include <e_os.h>
11#include <openssl/err.h>
12
Matt Caswell0f113f32015-01-22 03:40:55 +000013/*
Emilia Kasperb53338c2017-02-28 12:30:28 +010014 * Perform any essential OpenSSL initialization operations. Currently does
15 * nothing.
Dr. Stephen Henson3f746832011-04-01 14:49:30 +000016 */
17
18void OPENSSL_init(void)
Matt Caswell0f113f32015-01-22 03:40:55 +000019{
Emilia Kasperb53338c2017-02-28 12:30:28 +010020 return;
Matt Caswell0f113f32015-01-22 03:40:55 +000021}