Tcl Source Code

Check-in [130293d784]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:[Bug 2233954] AIX: compile error, but don't do that for _WIN32 (doesn't work in VS10)
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 130293d7840a6e3ca05a4c63c093fa35aa6327f6
User & Date: jan.nijtmans 2012-02-17 21:18:59
Context
2012-02-21
10:25
Documentation clarification, as discussed in [Bug 3482614]. check-in: 1d80a41569 user: dkf tags: trunk
2012-02-17
21:18
[Bug 2233954] AIX: compile error, but don't do that for _WIN32 (doesn't work in VS10) check-in: 130293d784 user: jan.nijtmans tags: trunk
21:17
[Bug 2233954] AIX: compile error, but don't do that for _WIN32 (doesn't work in VS10) check-in: fa683cad00 user: jan.nijtmans tags: core-8-5-branch
17:15
Merged core-8-5-branch segfault fix (commits [39f6ebe301] and [a6aa5be5b7]). check-in: 7135bc0716 user: andreask tags: trunk
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Changes to generic/tclIOUtil.c.

14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
 * Copyright (c) 1994-1997 Sun Microsystems, Inc.
 * Copyright (c) 2001-2004 Vincent Darley.
 *
 * See the file "license.terms" for information on usage and redistribution of
 * this file, and for a DISCLAIMER OF ALL WARRANTIES.
 */

#ifdef HAVE_SYS_STAT_H
#   include <sys/stat.h>
#endif
#include "tclInt.h"
#ifdef __WIN32__
#   include "tclWinInt.h"
#endif
#include "tclFileSystem.h"







|







14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
 * Copyright (c) 1994-1997 Sun Microsystems, Inc.
 * Copyright (c) 2001-2004 Vincent Darley.
 *
 * See the file "license.terms" for information on usage and redistribution of
 * this file, and for a DISCLAIMER OF ALL WARRANTIES.
 */

#if defined(HAVE_SYS_STAT_H) && !defined _WIN32
#   include <sys/stat.h>
#endif
#include "tclInt.h"
#ifdef __WIN32__
#   include "tclWinInt.h"
#endif
#include "tclFileSystem.h"