mirror of https://github.com/ARMmbed/mbed-os.git
Merge pull request #12550 from rajkan01/mbedint_remove_deprecated
Remove mbed interface deprecated APIpull/12513/head
commit
b611de8b6b
|
@ -177,10 +177,6 @@ void mbed_error_vprintf(const char *format, va_list arg) MBED_PRINTF(1, 0);
|
|||
*/
|
||||
void mbed_error_puts(const char *str);
|
||||
|
||||
/** @deprecated Renamed to mbed_error_vprintf to match functionality */
|
||||
MBED_DEPRECATED_SINCE("mbed-os-5.11",
|
||||
"Renamed to mbed_error_vprintf to match functionality.")
|
||||
void mbed_error_vfprintf(const char *format, va_list arg) MBED_PRINTF(1, 0);
|
||||
/** @}*/
|
||||
|
||||
|
||||
|
|
|
@ -112,8 +112,3 @@ void mbed_error_puts(const char *str)
|
|||
#endif
|
||||
core_util_critical_section_exit();
|
||||
}
|
||||
|
||||
void mbed_error_vfprintf(const char *format, va_list arg)
|
||||
{
|
||||
mbed_error_vprintf(format, arg);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue