]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/o_init.c
Move e_os.h to include/internal
[thirdparty/openssl.git] / crypto / o_init.c
CommitLineData
0f113f3e 1/*
2039c421 2 * Copyright 2011-2016 The OpenSSL Project Authors. All Rights Reserved.
3f746831 3 *
0e9725bc 4 * Licensed under the Apache License 2.0 (the "License"). You may not use
2039c421
RS
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
3f746831
DSH
8 */
9
d5f9166b 10#include "internal/e_os.h"
3f746831
DSH
11#include <openssl/err.h>
12
0f113f3e 13/*
b53338cb
EK
14 * Perform any essential OpenSSL initialization operations. Currently does
15 * nothing.
3f746831
DSH
16 */
17
18void OPENSSL_init(void)
0f113f3e 19{
b53338cb 20 return;
0f113f3e 21}