diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2006-02-02 10:58:02 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2006-02-02 10:58:02 (GMT) |
commit | 828b7e282d4e1591be7f44c77c513ed0bf170b06 (patch) | |
tree | efd92e05b850456daad9258ba048b908ba607ac2 /unix/tclUnixChan.c | |
parent | d3584ec84e5fad87560efca9f6e7c632faf6d220 (diff) | |
download | tcl-828b7e282d4e1591be7f44c77c513ed0bf170b06.zip tcl-828b7e282d4e1591be7f44c77c513ed0bf170b06.tar.gz tcl-828b7e282d4e1591be7f44c77c513ed0bf170b06.tar.bz2 |
Minor simplification of forward declarations
Diffstat (limited to 'unix/tclUnixChan.c')
-rw-r--r-- | unix/tclUnixChan.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/unix/tclUnixChan.c b/unix/tclUnixChan.c index 8fa09e5..926d047 100644 --- a/unix/tclUnixChan.c +++ b/unix/tclUnixChan.c @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclUnixChan.c,v 1.65 2006/01/26 09:30:52 dkf Exp $ + * RCS: @(#) $Id: tclUnixChan.c,v 1.66 2006/02/02 10:58:02 dkf Exp $ */ #include "tclInt.h" /* Internal definitions for Tcl. */ @@ -267,15 +267,13 @@ static void TcpWatchProc(ClientData instanceData, int mask); static int TtyCloseProc(ClientData instanceData, Tcl_Interp *interp); static void TtyGetAttributes(int fd, TtyAttrs *ttyPtr); -#ifndef DIRECT_BAUD -static int TtyGetBaud(unsigned long speed); -#endif static int TtyGetOptionProc(ClientData instanceData, Tcl_Interp *interp, CONST char *optionName, Tcl_DString *dsPtr); #ifndef DIRECT_BAUD +static int TtyGetBaud(unsigned long speed); static unsigned long TtyGetSpeed(int baud); -#endif +#endif /* DIRECT_BAUD */ static FileState * TtyInit(int fd, int initialize); static void TtyModemStatusStr(int status, Tcl_DString *dsPtr); #if BAD_TIP35_FLUSH |