Fix header file include guard names
Make the include guards consistent by renaming them systematically according to the naming conventions below For the public header files (in the 'include/openssl' directory), the guard names try to match the path specified in the include directives, with all letters converted to upper case and '/' and '.' replaced by '_'. For the private header files files, an extra 'OSSL_' is added as prefix. Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/9333)
This commit is contained in:
parent
8c78f0ec63
commit
ae4186b004
215 changed files with 481 additions and 481 deletions
4
e_os.h
4
e_os.h
|
@ -7,8 +7,8 @@
|
|||
* https://www.openssl.org/source/license.html
|
||||
*/
|
||||
|
||||
#ifndef HEADER_E_OS_H
|
||||
# define HEADER_E_OS_H
|
||||
#ifndef OSSL_E_OS_H
|
||||
# define OSSL_E_OS_H
|
||||
|
||||
# include <limits.h>
|
||||
# include <openssl/opensslconf.h>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue