mirror of
https://github.com/openssl/openssl.git
synced 2024-12-15 06:01:37 +08:00
d5f9166bac
Including e_os.h with a path from a header file doesn't work well on certain exotic platform. It simply fails to build. Since we don't seem to be able to stop ourselves, the better move is to move e_os.h to an include directory that's part of the inclusion path given to the compiler. Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/17641)
22 lines
525 B
C
22 lines
525 B
C
/*
|
|
* Copyright 2011-2016 The OpenSSL Project Authors. All Rights Reserved.
|
|
*
|
|
* Licensed under the Apache License 2.0 (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
|
|
*/
|
|
|
|
#include "internal/e_os.h"
|
|
#include <openssl/err.h>
|
|
|
|
/*
|
|
* Perform any essential OpenSSL initialization operations. Currently does
|
|
* nothing.
|
|
*/
|
|
|
|
void OPENSSL_init(void)
|
|
{
|
|
return;
|
|
}
|