Eliminate the deprecated mc_abort() function and MC_ABORT macro.

This commit is contained in:
Eric Haszlakiewicz
2014-03-22 21:48:34 -04:00
parent f9136f6852
commit 784534a31f
2 changed files with 0 additions and 23 deletions

15
debug.c
View File

@@ -41,21 +41,6 @@ extern void mc_set_syslog(int syslog)
_syslog = syslog;
}
void mc_abort(const char *msg, ...)
{
va_list ap;
va_start(ap, msg);
#if HAVE_VSYSLOG
if(_syslog) {
vsyslog(LOG_ERR, msg, ap);
} else
#endif
vprintf(msg, ap);
va_end(ap);
exit(1);
}
void mc_debug(const char *msg, ...)
{
va_list ap;