2015-01-22 03:40:55 +00:00
|
|
|
/*
|
2016-05-17 18:51:34 +00:00
|
|
|
* Copyright 2011-2016 The OpenSSL Project Authors. All Rights Reserved.
|
2011-04-01 14:49:30 +00:00
|
|
|
*
|
2016-05-17 18:51:34 +00:00
|
|
|
* Licensed under the OpenSSL license (the "License"). You may not use
|
|
|
|
* this file except in compliance with the License. You can obtain a copy
|
|
|
|
* in the file LICENSE in the source distribution or at
|
|
|
|
* https://www.openssl.org/source/license.html
|
2011-04-01 14:49:30 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <e_os.h>
|
|
|
|
#include <openssl/err.h>
|
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
/*
|
2017-02-28 11:30:28 +00:00
|
|
|
* Perform any essential OpenSSL initialization operations. Currently does
|
|
|
|
* nothing.
|
2011-04-01 14:49:30 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
void OPENSSL_init(void)
|
2015-01-22 03:40:55 +00:00
|
|
|
{
|
2017-02-28 11:30:28 +00:00
|
|
|
return;
|
2015-01-22 03:40:55 +00:00
|
|
|
}
|