Renamed error_strerror() to the less conflicting polarssl_strerror()
Ability to keep old function error_strerror() as well with POLARSSL_ERROR_STRERROR_BC. Also works with POLARSSL_ERROR_STRERROR_DUMMY.
This commit is contained in:
parent
89fe7f4388
commit
e2ab84f4a1
5 changed files with 49 additions and 4 deletions
include/polarssl
|
@ -103,7 +103,11 @@ extern "C" {
|
|||
* \param buffer buffer to place representation in
|
||||
* \param buflen length of the buffer
|
||||
*/
|
||||
void polarssl_strerror( int errnum, char *buffer, size_t buflen );
|
||||
|
||||
#if defined(POLARSSL_ERROR_STRERROR_BC)
|
||||
void error_strerror( int errnum, char *buffer, size_t buflen );
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue