From 129baba091f0f8343922efd643c6431e3ba7257e Mon Sep 17 00:00:00 2001 From: stacktic Date: Fri, 29 Oct 2010 17:06:53 +0000 Subject: [PATCH] Make sh build in debug mode --- bin/sh/output.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/sh/output.h b/bin/sh/output.h index 284a760d7f12..76cb5308657d 100644 --- a/bin/sh/output.h +++ b/bin/sh/output.h @@ -1,4 +1,4 @@ -/* $NetBSD: output.h,v 1.21 2010/08/30 06:27:14 christos Exp $ */ +/* $NetBSD: output.h,v 1.22 2010/10/29 17:06:53 stacktic Exp $ */ /*- * Copyright (c) 1991, 1993 @@ -71,7 +71,7 @@ void outfmt(struct output *, const char *, ...) void out1fmt(const char *, ...) __attribute__((__format__(__printf__,1,2))); #ifdef DEBUG -void dprintf(const char *, ...) +void debugprintf(const char *, ...) __attribute__((__format__(__printf__,1,2))); #endif void fmtstr(char *, size_t, const char *, ...)