Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 1 | /* |
Rich Salz | 2039c42 | 2016-05-17 14:51:34 -0400 | [diff] [blame] | 2 | * Copyright 2011-2016 The OpenSSL Project Authors. All Rights Reserved. |
Dr. Stephen Henson | 3f74683 | 2011-04-01 14:49:30 +0000 | [diff] [blame] | 3 | * |
Rich Salz | 2039c42 | 2016-05-17 14:51:34 -0400 | [diff] [blame] | 4 | * 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 Henson | 3f74683 | 2011-04-01 14:49:30 +0000 | [diff] [blame] | 8 | */ |
| 9 | |
| 10 | #include <e_os.h> |
| 11 | #include <openssl/err.h> |
| 12 | |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 13 | /* |
Emilia Kasper | b53338c | 2017-02-28 12:30:28 +0100 | [diff] [blame] | 14 | * Perform any essential OpenSSL initialization operations. Currently does |
| 15 | * nothing. |
Dr. Stephen Henson | 3f74683 | 2011-04-01 14:49:30 +0000 | [diff] [blame] | 16 | */ |
| 17 | |
| 18 | void OPENSSL_init(void) |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 19 | { |
Emilia Kasper | b53338c | 2017-02-28 12:30:28 +0100 | [diff] [blame] | 20 | return; |
Matt Caswell | 0f113f3 | 2015-01-22 03:40:55 +0000 | [diff] [blame] | 21 | } |