| # | Line 8 | Line 8 | static char SCCSid[] = "$SunId$ SGI"; | |
|---|---|---|
| 8 | * Default warning output function. | |
| 9 | */ | |
| 10 | ||
| 11 | + | int nowarn = 0; /* don't print warnings? */ |
| 12 | + | |
| 13 | wputs(s) | |
| 14 | char *s; | |
| 15 | { | |
| 16 | < | eputs(s); |
| 16 | > | if (!nowarn) |
| 17 | > | eputs(s); |
| 18 | } | |
| – | Removed lines |
| + | Added lines |
| < | Changed lines (old) |
| > | Changed lines (new) |