| Revision: | 3.6 |
| Committed: | Wed Jul 30 10:11:06 2003 UTC (22 years, 3 months ago) by schorsch |
| Content type: | text/plain |
| Branch: | MAIN |
| CVS Tags: | rad5R3, rad5R2, rad5R1, rad5R0, rad4R2P2, rad4R2P1, rad4R2, rad4R1, rad4R0, rad3R9, rad3R8, rad3R7P2, rad3R7P1, rad3R6P1, rad3R6 |
| Changes since 3.5: | +2 -3 lines |
| Log Message: | Added prototypes submitted by Randolph Fritz. |
| # | Content |
|---|---|
| 1 | #ifndef lint |
| 2 | static const char RCSid[] = "$Id: wputs.c,v 3.5 2003/06/07 12:50:21 schorsch Exp $"; |
| 3 | #endif |
| 4 | /* |
| 5 | * Default warning output function. |
| 6 | */ |
| 7 | |
| 8 | #include "copyright.h" |
| 9 | |
| 10 | #include "standard.h" |
| 11 | |
| 12 | int nowarn = 0; /* don't print warnings? */ |
| 13 | |
| 14 | void |
| 15 | wputs(char *s) |
| 16 | { |
| 17 | if (!nowarn) |
| 18 | eputs(s); |
| 19 | } |