mirror of
https://github.com/openssl/openssl.git
synced 2026-06-06 20:18:09 +00:00
ERR_get_state(), ERR_remove_state() and ERR_remove_thread_state() and useless SYS_F_ macros are removed. Fixes #4654 Reviewed-by: Eugene Syromiatnikov <esyr@openssl.org> Reviewed-by: Dmitry Belyavskiy <beldmit@gmail.com> Reviewed-by: Neil Horman <nhorman@openssl.org> MergeDate: Sat Feb 14 23:07:56 2026 (Merged from https://github.com/openssl/openssl/pull/30005)
19 lines
475 B
C
19 lines
475 B
C
/*
|
|
* Copyright 2016-2021 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
|
|
*/
|
|
|
|
#ifndef OSSL_INTERNAL_ERR_H
|
|
#define OSSL_INTERNAL_ERR_H
|
|
#pragma once
|
|
|
|
#define ERR_NUM_ERRORS 16
|
|
|
|
void err_free_strings_int(void);
|
|
|
|
#endif
|