Revision: | 2.4 |
Committed: | Thu Jul 17 09:21:29 2003 UTC (21 years, 10 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 2.3: | +3 -1 lines |
Log Message: | Added prototypes and includes from patch by Randolph Fritz. Added more required includes and reduced other compile warnings. |
# | Content |
---|---|
1 | #ifndef lint |
2 | static const char RCSid[] = "$Id: eputs.c,v 2.3 2003/02/25 02:47:21 greg 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(s) /* error message */ |
16 | char *s; |
17 | { |
18 | fputs(s, stderr); |
19 | } |