ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/common/wputs.c
Revision: 3.6
Committed: Wed Jul 30 10:11:06 2003 UTC (20 years, 8 months ago) by schorsch
Content type: text/plain
Branch: MAIN
CVS Tags: rad5R2, rad4R2P2, rad5R0, rad5R1, rad3R7P2, rad3R7P1, rad4R2, rad4R1, rad4R0, rad3R6, rad3R6P1, rad3R8, rad3R9, rad4R2P1, rad5R3
Changes since 3.5: +2 -3 lines
Log Message:
Added prototypes submitted by Randolph Fritz.

File Contents

# Content
1 #ifndef lint
2 static const char RCSid[] = "$Id: wputs.c,v 3.5 2003/06/07 12:50:21 schorsch Exp $";
3 #endif
4 /*
5 * Default warning output function.
6 */
7
8 #include "copyright.h"
9
10 #include "standard.h"
11
12 int nowarn = 0; /* don't print warnings? */
13
14 void
15 wputs(char *s)
16 {
17 if (!nowarn)
18 eputs(s);
19 }