ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/common/wputs.c
Revision: 3.5
Committed: Sat Jun 7 12:50:21 2003 UTC (20 years, 11 months ago) by schorsch
Content type: text/plain
Branch: MAIN
Changes since 3.4: +3 -1 lines
Log Message:
Various small changes to reduce compile warnings/errors on Windows.

File Contents

# User Rev Content
1 gregl 3.1 #ifndef lint
2 schorsch 3.5 static const char RCSid[] = "$Id: wputs.c,v 3.4 2003/02/25 02:47:22 greg 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 gregl 3.1 wputs(s)
16     char *s;
17     {
18 gwlarson 3.2 if (!nowarn)
19     eputs(s);
20 gregl 3.1 }