commit 08ae585bdb8bb20fafc6db328976e6fe25e8cabd
parent a20ad556bb022ee29a5eb4b30382c993fbbfb8b0
Author: sin <sin@2f30.org>
Date: Tue, 17 Jun 2014 14:51:14 +0100
Remove debugging clauses from eprintf.c
Diffstat:
1 file changed, 0 insertions(+), 8 deletions(-)
diff --git a/eprintf.c b/eprintf.c
@@ -32,10 +32,6 @@ enprintf(int status, const char *fmt, ...)
void
venprintf(int status, const char *fmt, va_list ap)
{
-#ifdef DEBUG
- fprintf(stderr, "%s: ", argv0);
-#endif
-
vfprintf(stderr, fmt, ap);
if(fmt[0] && fmt[strlen(fmt)-1] == ':') {
@@ -51,10 +47,6 @@ weprintf(const char *fmt, ...)
{
va_list ap;
-#ifdef DEBUG
- fprintf(stderr, "%s: ", argv0);
-#endif
-
va_start(ap, fmt);
vfprintf(stderr, fmt, ap);
va_end(ap);