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 (14 months, 3 weeks 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

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