Fix compilation errors

This commit is contained in:
Nick Terrell
2017-04-03 16:08:20 -07:00
parent 59aadc85dc
commit 87cec8fd56
4 changed files with 0 additions and 16 deletions
-12
View File
@@ -41,16 +41,4 @@ ERR_STATIC unsigned ERR_isError(size_t code) { return (code > ERROR(maxCode)); }
ERR_STATIC ERR_enum ERR_getErrorCode(size_t code) { if (!ERR_isError(code)) return (ERR_enum)0; return (ERR_enum) (0-code); }
/*-****************************************
* Error Strings
******************************************/
const char* ERR_getErrorString(ERR_enum code); /* error_private.c */
ERR_STATIC const char* ERR_getErrorName(size_t code)
{
return ERR_getErrorString(ERR_getErrorCode(code));
}
#endif /* ERROR_H_MODULE */