Module Name: src Committed By: stacktic Date: Fri Oct 29 17:06:54 UTC 2010
Modified Files: src/bin/sh: output.h Log Message: Make sh build in debug mode To generate a diff of this commit: cvs rdiff -u -r1.21 -r1.22 src/bin/sh/output.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/bin/sh/output.h diff -u src/bin/sh/output.h:1.21 src/bin/sh/output.h:1.22 --- src/bin/sh/output.h:1.21 Mon Aug 30 06:27:14 2010 +++ src/bin/sh/output.h Fri Oct 29 17:06:53 2010 @@ -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 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 *, ...)