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, 9 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

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