Unused code: report_message()

Signed-off-by: Jan Mulder <jlmulder@xs4all.nl>
This commit is contained in:
Jan Mulder 2017-05-20 09:04:13 +02:00
parent 1c03075f24
commit b7a6b7c6be
2 changed files with 0 additions and 6 deletions

View file

@ -707,7 +707,6 @@ extern "C" {
#endif
extern int report_error(const char *fmt, ...);
extern void report_message(const char *msg);
extern const char *get_error_string(void);
extern void set_error_cb(void(*cb)(void));

View file

@ -45,11 +45,6 @@ int report_error(const char *fmt, ...)
return -1;
}
void report_message(const char *msg)
{
(void)report_error("%s", msg);
}
void set_error_cb(void(*cb)(void)) {
error_cb = cb;
}