ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/common/eputs.c
Revision: 2.5
Committed: Mon Feb 6 22:40:21 2023 UTC (15 months ago) by greg
Content type: text/plain
Branch: MAIN
CVS Tags: rad5R4, HEAD
Changes since 2.4: +2 -3 lines
Log Message:
refactor: Changed some char* args to const char* to avoid warnings

File Contents

# User Rev Content
1 greg 1.1 #ifndef lint
2 greg 2.5 static const char RCSid[] = "$Id: eputs.c,v 2.4 2003/07/17 09:21:29 schorsch Exp $";
3 greg 1.1 #endif
4 greg 2.2 /*
5     * Default error output function.
6     */
7    
8 greg 2.3 #include "copyright.h"
9 greg 1.1
10     #include <stdio.h>
11 schorsch 2.4
12     #include "rterror.h"
13 greg 1.1
14 greg 2.2 void
15 greg 2.5 eputs(const char *s) /* error message */
16 greg 1.1 {
17     fputs(s, stderr);
18     }