mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-17 08:31:09 -08:00
Change comments to reflect code (stderr -> stdout)
Copied from Perforce Change: 18968 ServerID: perforce.ravenbrook.com
This commit is contained in:
parent
e58ebe857c
commit
45ee03aa45
1 changed files with 6 additions and 6 deletions
|
|
@ -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, ...);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue