| 161 | } |
| 162 | |
| 163 | void msmsg |
| 164 | VA_DECL(const char *, fmt) |
| 165 | { |
| 166 | VA_START(fmt); |
| 167 | VA_INIT(fmt, const char *); |
| 168 | #if defined(MSDOS) && defined(NO_TERMS) |
| 169 | if (iflags.grmode) |
| 170 | gr_finish(); |
| 171 | #endif |
| 172 | Vprintf(fmt, VA_ARGS); |
| 173 | flushout(); |
| 174 | VA_END(); |
| 175 | return; |
| 176 | } |
| 177 | |
| 178 | /* |
| 179 | * Follow the PATH, trying to fopen the file. |