textio: removed prototypes for non-existant functions

extern void TxVisChar();
extern void TxPromptOnNewLine();
extern TxCommand *TxDeviceStdin();
extern TxCommand *TxButtonMaskToCommand();

Found during K&R removal of textio/**
This commit is contained in:
Darryl L. Miles 2025-01-31 17:07:07 +00:00 committed by Tim Edwards
parent 12c6ccc97b
commit f63dc318a7
2 changed files with 0 additions and 4 deletions

View File

@ -63,7 +63,6 @@ extern bool TxPrintOff(); /* disables TxPrintf output */
extern void TxFlush();
extern void TxFlushOut();
extern void TxFlushErr();
extern void TxVisChar();
extern void TxUseMore();
extern void TxStopMore();
@ -82,7 +81,6 @@ extern int TxDialog();
/* prompting procedures */
extern void TxSetPrompt();
extern void TxPrompt();
extern void TxPromptOnNewLine();
extern void TxUnPrompt();
extern void TxRestorePrompt();
extern void TxReprint();

View File

@ -116,8 +116,6 @@ extern TxCommand TxCurCommand;
/* procedures to help in making device command routines */
extern TxCommand *TxDeviceStdin();
extern TxCommand *TxButtonMaskToCommand();
extern void TxAddInputDevice(const fd_set *fdmask, void (*inputProc)(), ClientData cdata); /* Can read multiple file desc. */
extern void TxAdd1InputDevice(); /* Can read only 1 file desc. */
extern void TxDeleteInputDevice(const fd_set *fdmask);