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
|
|
|
*
|
2018-12-06 13:03:01 +00:00
|
|
|
* Licensed under the Apache License 2.0 (the "License"). You may not use
|
2016-05-17 18:51:34 +00:00
|
|
|
* 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
|
|
|
*/
|
|
|
|
|
2017-08-22 15:07:56 +00:00
|
|
|
#include "e_os.h"
|
2011-04-01 14:49:30 +00:00
|
|
|
#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
|
|
|
}
|