note: at present, this routine is not part of the formal window interface */ deallocate resources prior to final termination */
| 339 | */ |
| 340 | /* deallocate resources prior to final termination */ |
| 341 | void |
| 342 | term_shutdown(void) |
| 343 | { |
| 344 | /* we only attempt to clean up a few individual termcap variables */ |
| 345 | #if defined(TERMLIB) || defined(ANSI_DEFAULT) |
| 346 | kill_hilite(); |
| 347 | #endif |
| 348 | #ifdef TERMLIB |
| 349 | if (dynamic_HIHE) { |
| 350 | free((genericptr_t) nh_HI), nh_HI = (char *) 0; |
| 351 | free((genericptr_t) nh_HE), nh_HE = (char *) 0; |
| 352 | dynamic_HIHE = FALSE; |
| 353 | } |
| 354 | #endif |
| 355 | return; |
| 356 | } |
| 357 | |
| 358 | void |
| 359 | tty_number_pad(int state) |
no test coverage detected