ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/common/wputs.c
Revision: 3.4
Committed: Tue Feb 25 02:47:22 2003 UTC (21 years, 2 months ago) by greg
Content type: text/plain
Branch: MAIN
CVS Tags: rad3R5
Changes since 3.3: +1 -56 lines
Log Message:
Replaced inline copyright notice with #include "copyright.h"

File Contents

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