]> granicus.if.org Git - json-c/commitdiff
Eliminate the deprecated mc_abort() function and MC_ABORT macro.
authorEric Haszlakiewicz <erh+git@nimenees.com>
Sun, 23 Mar 2014 01:48:34 +0000 (21:48 -0400)
committerEric Haszlakiewicz <erh+git@nimenees.com>
Sun, 23 Mar 2014 01:48:34 +0000 (21:48 -0400)
debug.c
debug.h

diff --git a/debug.c b/debug.c
index e0294caa6ef1b68d74e6eb08b7aa7d15a1828f82..3b64b59052ad9c706c7d5b6a22480451b553bddf 100644 (file)
--- a/debug.c
+++ b/debug.c
@@ -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;
diff --git a/debug.h b/debug.h
index f2dc5411e19c6424b512e238234ff175a36c678b..80ca3e43042e07c7e19111a2156378e5d76ec2a2 100644 (file)
--- a/debug.h
+++ b/debug.h
@@ -24,10 +24,6 @@ extern int mc_get_debug(void);
 
 extern void mc_set_syslog(int syslog);
 
-/**
- * @deprecated Use mc_error(), and return an appropriate error.
- */
-extern void mc_abort(const char *msg, ...);
 extern void mc_debug(const char *msg, ...);
 extern void mc_error(const char *msg, ...);
 extern void mc_info(const char *msg, ...);
@@ -52,10 +48,6 @@ extern void mc_info(const char *msg, ...);
 
 #endif
 
-/**
- * @deprecated Use MC_ERROR(), and return an appropriate error.
- */
-#define MC_ABORT(x, ...) mc_abort(x, ##__VA_ARGS__)
 #define MC_ERROR(x, ...) mc_error(x, ##__VA_ARGS__)
 
 #ifdef MC_MAINTAINER_MODE