From 45ee03aa45a8ada5f8528b5dfcb9f3f1e9c8aac1 Mon Sep 17 00:00:00 2001 From: Richard Tucker Date: Wed, 5 Nov 1997 14:49:58 +0000 Subject: [PATCH] Change comments to reflect code (stderr -> stdout) Copied from Perforce Change: 18968 ServerID: perforce.ravenbrook.com --- mps/qa/test/testlib/testlib.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/mps/qa/test/testlib/testlib.h b/mps/qa/test/testlib/testlib.h index 80e886d4378..4147d7fc2d9 100644 --- a/mps/qa/test/testlib/testlib.h +++ b/mps/qa/test/testlib/testlib.h @@ -26,9 +26,9 @@ void fail(void); void report(const char *str, const char *format, ...); void vreport(const char *str, const char *format, va_list args); -/* adie: print text and err code to stderr by calling error +/* adie: print text and err code to stdout by calling error die: as above, but if err is MPS_RES_OK do nothing - cdie: print text and err code to stderr as comment, or as error + cdie: print text and err code to stdout as comment, or as error if err isn't MPS_RES_OK */ @@ -36,21 +36,21 @@ void cdie(mps_res_t err, const char *str); void die(mps_res_t err, const char *str); void adie(mps_res_t err, const char *str); -/* Prints text to stderr */ +/* Prints text to stdout */ void comment(const char *format, ...); void vcomment(const char *format, va_list args); -/* Prints text to stderr if cond is true */ +/* Prints text to stdout if cond is true */ void commentif(int cond, const char *format, ...); -/* Prints text to stderr and aborts */ +/* Prints text to stdout and aborts */ void error(const char *format, ...); void verror(const char *format, va_list args); -/* If exp is false, prints text to stderr and aborts */ +/* If exp is false, prints text to stdout and aborts */ void asserts(int expr, const char *format, ...);