diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-04-26 19:59:31 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-04-26 19:59:31 (GMT) |
commit | dbae0710833f1ecef64a517c3f20bd1ce3b7ed86 (patch) | |
tree | d37928715d24da5d6d679e5e0256ab693f4a40a0 /unix/tclUnixChan.c | |
parent | a96ba8ec6197c35dbd3839eebbcfe001543bdad9 (diff) | |
parent | efeae981600cc17e5c9b076cf767c7e9a1efcfd8 (diff) | |
download | tcl-dbae0710833f1ecef64a517c3f20bd1ce3b7ed86.zip tcl-dbae0710833f1ecef64a517c3f20bd1ce3b7ed86.tar.gz tcl-dbae0710833f1ecef64a517c3f20bd1ce3b7ed86.tar.bz2 |
get rid of _ANSI_ARGS_ and CONST
Diffstat (limited to 'unix/tclUnixChan.c')
-rw-r--r-- | unix/tclUnixChan.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/tclUnixChan.c b/unix/tclUnixChan.c index db137aa..b05a9f2 100644 --- a/unix/tclUnixChan.c +++ b/unix/tclUnixChan.c @@ -981,7 +981,7 @@ TtyGetOptionProc( # define TtyGetBaud(speed) ((int) (speed)) #else /* !DIRECT_BAUD */ -static CONST struct {int baud; unsigned long speed;} speeds[] = { +static const struct {int baud; unsigned long speed;} speeds[] = { #ifdef B0 {0, B0}, #endif |