diff options
author | hobbs <hobbs> | 2000-01-24 02:30:16 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2000-01-24 02:30:16 (GMT) |
commit | 73759975a6600b92114fc4d1b3549c1d3ef19373 (patch) | |
tree | 9bb7c963e7a49291228a78ce28428e1a723389b8 /unix/tclUnixPort.h | |
parent | 3aa0e680ba354f6091a8fe8deec74179089430e9 (diff) | |
download | tcl-73759975a6600b92114fc4d1b3549c1d3ef19373.zip tcl-73759975a6600b92114fc4d1b3549c1d3ef19373.tar.gz tcl-73759975a6600b92114fc4d1b3549c1d3ef19373.tar.bz2 |
* unix/tclUnixPort.h: moved include of <utime.h> lower since some
systems (UTS) require sys/types.h to be included first [Bug: 4031]
* unix/tclUnixChan.c (CreateSocketAddress): changed comparison
with -1 to 0xFFFFFFFFFFFFFFF, which is the pedantic way to say -1
for both 32 bit and 64 bit systems. [Bug: 3878]
Diffstat (limited to 'unix/tclUnixPort.h')
-rw-r--r-- | unix/tclUnixPort.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/tclUnixPort.h b/unix/tclUnixPort.h index a3c2df4..b7b0215 100644 --- a/unix/tclUnixPort.h +++ b/unix/tclUnixPort.h @@ -19,7 +19,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclUnixPort.h,v 1.12 1999/10/29 03:04:58 hobbs Exp $ + * RCS: @(#) $Id: tclUnixPort.h,v 1.13 2000/01/24 02:30:17 hobbs Exp $ */ #ifndef _TCLUNIXPORT @@ -36,7 +36,6 @@ *--------------------------------------------------------------------------- */ -#include <utime.h> #include <errno.h> #include <fcntl.h> #ifdef HAVE_NET_ERRNO_H @@ -94,6 +93,7 @@ # include <sys/ioctl.h> /* For FIONBIO. */ # endif #endif /* USE_FIONBIO */ +#include <utime.h> /* * Socket support stuff: This likely needs more work to parameterize for |