| Revision: | 3.5 |
| Committed: | Sat Jun 7 12:50:21 2003 UTC (22 years, 5 months ago) by schorsch |
| Content type: | text/plain |
| Branch: | MAIN |
| Changes since 3.4: | +3 -1 lines |
| Log Message: | Various small changes to reduce compile warnings/errors on Windows. |
| # | Content |
|---|---|
| 1 | #ifndef lint |
| 2 | static const char RCSid[] = "$Id: wputs.c,v 3.4 2003/02/25 02:47:22 greg 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(s) |
| 16 | char *s; |
| 17 | { |
| 18 | if (!nowarn) |
| 19 | eputs(s); |
| 20 | } |