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:
parent
12c6ccc97b
commit
f63dc318a7
|
|
@ -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();
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in New Issue